NavLink Dropdown Hover Color?

|Jordan|

Active member
Which element controls the hover color of a NavLink that has a dropdown?

I've an hour looking for it and its driving me insane.
 
Not sure I read this correctly but this might be what your looking for changing the background colour and text colour to your preference by putting the following in the EXTRA.css template.

Code:
.navTabs .navTab.PopupOpen .navLink:hover {
color: red !important;
background-color: green !important;
}
 
Top Bottom