Is it possible to change the color of one main navigation item so that it’s always highlighted in a particular color?
Hey!
Try adding this code to the Quick CSS:
#menu-item-3193 .avia-menu-fx {
opacity: 1;
display: block;
}
#menu-item-3193 a{
color: red;
}
You’d need to change 3193 to the menu item ID you want to change.
Cheers!
Josue