XF 1.2 Navigation Menu - Change Font Color

In EXTRA.css
Closed
Code:
.navTabs .navTab.PopupClosed .navLink  {
color: green;
}
Selected
Code:
.navTabs .navTab.selected .navLink {
color: cyan;
}
Hover
Code:
.navTabs .navTab.PopupClosed:hover {
color: red;
}
I believe those are the ones for the main tabs.

For the ones below each of the selected I think it's for the main color. I'm not sure about the hover, etc - would have to do more Chrome Developer looking and I'm about to go to bed.
Code:
.navTabs .navTab.selected .tabLinks a
 
Last edited:
In EXTRA.css
Closed
Code:
.navTabs .navTab.PopupClosed .navLink  {
color: green;
}
Selected
Code:
.navTabs .navTab.selected .navLink {
color: cyan;
}
Hover
Code:
.navTabs .navTab.PopupClosed:hover {
color: red;
}
I believe those are the ones for the main tabs.

For the ones below each of the selected I think it's for the main color. I'm not sure about the hover, etc - would have to do more Chrome Developer looking and I'm about to go to bed.
Code:
.navTabs .navTab.selected .tabLinks a

Thank you. This issue has been resolved.
 
Top Bottom