How change font color in site description (Blog sub-title)
-
I am using Hemingway Rewritten theme, and I have customization.
I tried the following;
.site-description {
color: #ffffff;
}.site-description {
color: #fff;
}.site-description {
color: white;
}And various three digit numbers, which did change the font color but I could not find white, and all were dark colors.
The blog I need help with is: (visible only to logged in users)
-
You’re almost there. :-) Your tagline is correctly set to white – all three of those hex codes are right – but there’s another piece of CSS being applied that’s making it look more greyish on your site, and that’s this declaration:
opacity: 0.6;Try adding CSS to both change the colour and return the opacity to 100% so it looks like solid white:
.site-description { color: #ffffff; opacity: 1; } -
-
- The topic ‘How change font color in site description (Blog sub-title)’ is closed to new replies.