Change the banner font color
- The topic ‘Change the banner font color’ is closed to new replies.
Need help? Check out our Support site, then
I can’t find a code to change the text color on my site’s banners. The text is white as well as my banner images so I want the text to be seen.
The blog I need help with is: (visible only to logged in users)
I can change the font color if there’s no the featured image on the banner. But if there’s the image, the font color stays white. I would like it to be grey on every page.
Hi,
You can use this custom CSS:
.entry-header.has-background h1{
color: #000 !important;
}
Thank you!!