i m using be theme version 15.8, set menu as Creative Right: always open.
Active link background is not working. I've changed its color via:
Theme options --- colors --- Menu & action bar ---- Active link background
Background shud be black for "Home" (active link) and also when mouseover other links...eg About Us, Services, etc.
apprec yr help
Comments
if you will have a look on this option once again, you will see that this option works with Header Plain & Menu Highlight only. To change hover and active color of menu items in your case, you need to use custom css:
#Top_bar .menu > li > a:hover { background: #000 !important; color: #FFF !important; }#Top_bar .menu > li.current-menu-item > a { background: #000 !important; color: #FFF !important; }
#Header_creative #Top_bar .menu > li > a { border-radius: 5px !important; }#Top_bar .menu > li ul {
background-color: #E2E2E2 !important;
}
#Top_bar .menu > li ul li a {
color: #000 !important;
}
#Top_bar .menu li ul li:hover a {
background: #000 !important;
}
#Top_bar .menu > li ul li a:hover {
color: #FFF;
}