Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #46020
    ShawnF
    Member

    Greetings,

    I am trying to get the ‘current’ menu item to not only have bold text which is the default, but also the whole item to become the hover colour once selected to know where one is on the navigation.

    Any assistance will be greatly appreciated.

    #46043
    Sakin
    Keymaster

    @ShawnF: In Catch Evolution theme, you can add the following css in “Appearance => Theme Options => Custom CSS” to change the current menu item to be like hover color.

    #header-menu .menu .current-menu-item > a, 
    #header-menu .menu .current-menu-ancestor > a, 
    #secondary-menu .menu .current_page_item > a, 
    #header-menu .menu .current_page_ancestor > a {
    	background: #e5e5e5; /* Show a solid color for older browsers */
    	background: -moz-linear-gradient(#f9f9f9, #e5e5e5);
    	background: -o-linear-gradient(#f9f9f9, #e5e5e5);
    	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f9f9f9), to(#e5e5e5)); /* Older webkit syntax */
    	background: -webkit-linear-gradient(#f9f9f9, #e5e5e5);
    	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e5e5e5'); /* for IE */
    	color: #373737;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Current Menu Item’ is closed to new replies.