Hi guys,
Is it possible to do the following:When I open a submenu from the main menu, I want to set main menu item color to orange. Current page color css works fine with the submenu item but it does not change the main menu item color (it is just bolded black by default I assume).
Hi terveysmaailma!
Try adding this to your custom CSS.
.current-menu-item > a > .avia-menu-text, .current-menu-ancestor > a > .avia-menu-text, .current-menu-parent > a > .avia-menu text { color: orange !important; }
If your wanting to do it on hover only then try this.
.menu > li:hover > a > .avia-menu-text {
color: orange !important;
}
Cheers!
Elliott