Remove colored menu buttons on current page?

Discussion in 'ColorWay WordPress Theme' started by chauncey99, Mar 3, 2014.

  1. chauncey99

    chauncey99 Member

    Joined:
    Dec 11, 2013
    Messages:
    33
    Likes Received:
    0
    Hello, currently the dropdown menu shows a highlighted button based on the current page. For example, if I am on the "furniture" page, then "furniture" is highlighted. You can see an example here:

    http://inkthemes.com/wpthemes/color...i-dont-have-any-furniture-of-mine-in-my-room/

    I don't want the "furniture" button to remain highlighted. I only want it to change to black color when I hover my mouse over it (similar to when I move my mouse over "blog" and "gallery" on your sample site), but not to remain highlighted. Can you please provide the code for this? Thank you.
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
     #menu li.current-menu-item a, #menu li.current-menu-parent a, #menu li.current_page_parent a, #menu li a.selected, #menu li.current_page_item a{
    color:#000!important;
    background:none;
    }
    #menu li a:hover{
    background:#000;
    color:#fff!important;
    }



    Thanks & Regards
    Gourav Shrivastava
     

Share This Page