How to change the logo font color for a single page

Hi! Some of the background photos on my pages have white in them that interferes with the website title/logo font that is also white(ish). Is there a way to change the logo font color or menu font colors for individual pages where that is an issue?

Thanks so much!

Lydia

Hi Lydia,

Thank you for writing in, you can add this to Theme Options > CSS

/*change the site brand text color on specific page*/
.alt-brand-color .x-brand {
	color: red;
}

/*change the header menu text color on specific page*/
.alt-brand-color .x-navbar .desktop .x-nav > li > a {
	color: blue;
}

Change the color values to your desired colours

Now every time you encounter that kind of issue on a certain page, please apply the
class alt-brand-color to the Body Class of that page.



Hope it helps,
Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.