Home › Forums › CSS › WordPress menu styling troubles :( › Reply To: WordPress menu styling troubles :(
January 28, 2015 at 5:11 am
#194442
Member
Firstly, when the sidebar options are ‘clicked/opened’ they get a class of active
added
<li class="page_item page-item-365 page_item_has_children active">
but I cannot see that an active
class has been defined.
So, perhaps
#nav_menu-2 a:hover { /* line 4975 */
color: #FFFFFF !important;
background: #5E9FC2;
}
could be:
#nav_menu-2 > li.active,
#nav_menu-2 a:hover {
color: #FFFFFF !important;
background: #5E9FC2;
}