Hello!
I added this to Quick CSS so that the active item would be shaded on the mobile menu:
#mobile-advanced li.current-menu-item {
background-color: #f8f8f8;
}
Problem is that is is shading the main menu item and all submenu items under that main menu, instead of just the one page they are on. How to fix that?
Thanks in advance for any help you can give.
I am going to work around question #1 above, so you can disregard that. :)
The only remaining question is how to adjust the Quick CSS so that only the active item is highlighted in the mobile menu, even if it is a submenu item.
Thanks!
Hi Julie,
Please change your code to following one
#mobile-advanced li.current-menu-item > a {
background-color: #f8f8f8;
}
Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.
Best regards,
Yigit
Works perfectly now.
Thanks so much Yigit! :)