BlogArise Custom CSS

In case anyone is interested, here’s the current Custom-CSS I am using for the BlogArise theme:

WordPress BlogArise Custom CSS

This is the current Custom CSS for the theme.

====================================================================

/* 2025-05-01: Captcha, top title, bottom title bar and headline bar */
/* 2025-04-29: Created to change colours and remove annoying text effects */

/* Remove the shadow from the text and set font size etc */
.site-branding-text .site-title a {
/* font-size: 60px; */
/* ! line-height: 1.2; */
text-shadow: none;
}

/* Font size of the description */
.site-branding-text .site-description {
font-size: 14px;
}

/* This is the area in the middle of the navbar with a slight bar at the top, then the bext two are the rest of the box */
.navbar-collapse.collapse, .bs-headthree .navbar-wp {
background-color: peachpuff;
}

/* Categories button background */
.blogarise-categories.category-color-1 {
background: #87a96b;
}

/* This makes it beige in every box */
:root {
–box-color: beige;
}

/* Link text */
a {
color: Red;
}

/* Hide the ReCaptcha Box according to Google TOS – Which means putting a notice in the Policy page */
.grecaptcha-badge {
visibility: hidden !important;
}

/* This trims and centers the top title and menu bar */
.bs-headthree {
width: 90%;
margin: auto;
}

/* This gets rid of the annoying headline bar – There is probably a better way but that can wait – Also set it to hide to it goes away even more */
.bs-head-detail {
visibility: hidden !important;
}

/* Remove the annoying black box with the page titles repeated at the bottom – It still leaves a gap but it looks better now anyway */
.footer {
visibility: hidden !important;
}

.bs-footer-copyright {
visibility: visible !important;
}