Hi guys,
I've changed the style of the top bar menu like this:
#Top_bar .menu > li > a::after {
content: "";
height: 25px;
left: 0;
opacity: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 203;
}
#Top_bar .menu > li a::after {
background: #5d8da2 none repeat scroll 0 0;
}
Maybe it's a line to add with .current-page-ancestor ....I'm just not sure how to do it.
Thank you and hope you can help me with this one !
Excellent theme guys !
Comments
to activate same active background, you need to use the following css:
#Top_bar .menu > li.current-page-ancestor > a::after{ opacity: 1; }#Top_bar .menu > lli.current-page-ancestor { background: #FFF !important; }
#Top_bar .menu > li.current-page-ancestor a { color: #000 !important; }
.widget_mfn_menu ul li.current-menu-ancestor > a {background: #5d8da2; color:#fff;
}