DropDown Menu Colors - Free Theme

Discussion in 'ColorWay WordPress Theme' started by chauncey99, Feb 6, 2014.

  1. chauncey99

    chauncey99 Member

    Joined:
    Dec 11, 2013
    Messages:
    33
    Likes Received:
    0
    Hello, I am trying to change my dropdown menu colors as follows:

    menu buttons: blue
    menu background: white
    menu hover background: white
    selected menu item: blue

    Also - I don't want the >> symbol next to the menu items. How can I remove it?
     
  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 a{
    color:blue;
    }
    #menu li.current-menu-item a, #menu li.current-menu-parent a, #menu li.current_page_parent a, #menu li a.selected, #menu li a:hover, #menu li.current_page_item a{
    color:blue;
    background:red;
    }
    #menu li.current-menu-item a:hover, #menu li.current-menu-parent a:hover, #menu li.current_page_parent a:hover, #menu li a:hover.selected, #menu li.current_page_item a{
    color:blue;
    }

    Thanks & Regards
    Gourav Shrivastava
     
  3. chauncey99

    chauncey99 Member

    Joined:
    Dec 11, 2013
    Messages:
    33
    Likes Received:
    0
    The code you have provided is not working. I have sent you an email with more details.

    Thank you.
     
  4. chauncey99

    chauncey99 Member

    Joined:
    Dec 11, 2013
    Messages:
    33
    Likes Received:
    0
    After reading through many of the posts on the Colorway forum, I have figured out the problem. The menu on the free version is called sf-menu. This is the code to change the colors:

    Code:
    #menu .sf-menu li li {
    background-color: BLUE;
    }
    #menu .sf-menu li li a.selected, #menu .sf-menu li li a:hover {
    color: RED !important;
    background: BLUE;
    }
     
  5. chauncey99

    chauncey99 Member

    Joined:
    Dec 11, 2013
    Messages:
    33
    Likes Received:
    0
    My only remaining issue now is that there is a small space between the main menu items and the dropdown menu items. How do I remove this space and make the dropdown menu color connect from the top menu items to the dropdown menu items with no blank space in-between?

    Thank you.
     
  6. 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 .sf-menu li > ul {
    margin-top: -24px;
    }
    Adjust its value as per your requirements.

    Thanks & Regards
    Gourav Shrivastava
     

Share This Page