style help - Navbar Text Colour

Simon

Active member
Where can I edit the text colour of the text in the Navbar. (Home, forums, members etc)

I have changed it on hover and selected tab but cant find how to change the normal text colour.

Thanks in advance
 
Where can I edit the text colour of the text in the Navbar. (Home, forums, members etc)

I have changed it on hover and selected tab but cant find how to change the normal text colour.

Thanks in advance

you can do this via Style properties > Header & navigation

or go into EXTRA.CSS template and change the color by adding and changing the colour value to your preference.

Code:
.navTabs .navTab.PopupClosed .navLink {
color: #A5CAE4;
}
 
Thanks Shelley, That done it!
I added to the Extra.css.

you're welcome.

If by offchance you want to alter the text on the navbar when the menu is open you would add the following

Code:
.navTabs .navTab.PopupOpen .navLink {
color: #yourcolor;
}

for the selected tab would be

Code:
.navTabs .navTab.selected .navLink {
color: #yourcolor;}

Posting on the offchance you may require the code. :)
 
Top Bottom