XF 1.2 Hover on navBar

Enguerran A

Well-known member
Hello, I need to add a hover changing the color for each links on the navBar I have but I don't know how to keep this color displayed.

I tried that but the colors are displayed only a few times before an other css rules erases the one I added.
.navTabs .navTab.portal.PopupClosed .navLink:hover
{
color: orange !important;
}
.navTabs .navTab.forums.PopupClosed .navLink:hover
{
color: blue !important;
}
 
There are different tab states to consider. Use this code to ignore the tab state and always apply the hover color:

Code:
.navTabs .navTab.forums .navLink:hover
{
color: blue !important;
}
 
Top Bottom