XF 1.2 Can't Change Navigation Hover Color

Amaury

Well-known member
I'm trying this, but it's not affecting it. I'd edit the navigation.css template directly, but I want to get it working in EXTRA.css.

Code:
.navTabs .navTab.PopupClosed .navLink:hover {
    color: #FF6600 !important;
}
 
I'm trying this, but it's not affecting it. I'd edit the navigation.css template directly, but I want to get it working in EXTRA.css.

Code:
.navTabs .navTab.PopupClosed .navLink:hover {
    color: #FF6600 !important;
}

That will work in EXTRA.CSS

If your wanting the modified coloured text to be the same when the menu drops then this will work also and retain that colour.

Code:
.navTabs .navTab.PopupClosed .navLink:hover, .navTabs .navTab.PopupOpen .navLink {
  color: #FF6600;
}

If your referring to the tabLinks (Marked forums read, Search forums, watched forums, watched threads) etc area then the following is what you want to use.

Code:
.navTabs .navTab.selected .tabLinks a:hover {
color: #FF6600;
}
 
Last edited:
Top Bottom