Home Forums Exoplanet Pro Menu highlight problem Reply To: Menu highlight problem

#1136
Andy
Keymaster

Hi, yes it is normal behavior for the current active page.

So, for example if you have a “Home” link in your menu then it will be highlighted when on the home page as it is the current active page.

If you still want to have a “Home” link in the menu but not have it highlighted when on the home page, add this custom CSS:

.home .menu ul li.current_page_item a:before, .home .menu ul li.current-menu-item a:before {
    background: none !important;
}

.home .menu ul li.current_page_item a, .home .menu ul li.current-menu-item a {
    color: #ffffff;
}

the #ffffff above is white (from your image your menu links look to be white) so if you use different color, be sure to change this to your color choice.