Nav tab links

Blakefire

Active member
I just cant figure it out, how do I change the color of the font here?
viD7x.png
 
paste in EXTRA.CSS changing the colour to your preference

navybarry.webp

Code:
.navTabs .navTab.PopupClosed .navLink {
    color: red;
}
.navTabs .navTab.selected .tabLinks a {
    color: yellow;
}
 
.navTabs .navTab.selected .navLink {
    color: green;
}

For hover in tablinks (below) if you choose to alter that also


tabbylinky.webp
Code:
.navTabs .navTab.selected .tabLinks a:hover {
    color: red;
}
 
Top Bottom