Customize Navigation Menu colors & font style

Discussion in 'BlackBird WordPress Theme' started by ashybaby87, Jan 21, 2013.

?

Who else would like more customization options with blackbird?

  1. Me!

    100.0%
  2. No thanks.

    0 vote(s)
    0.0%
Thread Status:
Not open for further replies.
  1. ashybaby87

    ashybaby87 Member

    Joined:
    Dec 31, 2012
    Messages:
    36
    Likes Received:
    0
    Is there a way to customize both the navigation menu color (including the background of the drop down menu) and the font style (family & color)?

    As of right now my menu shows a shadow looking lettering and it makes it a bit more difficult to read. i attached an image of how the menu currently appears. My site is http://www.closetsamples.com. I like the white background because it blends in more with my theme, but I would like to be able to change the actual menu drop-down colors, hover color and font style to it if possible.
     

    Attached Files:

  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    #menu .ddsmoothmenu li li a {
    background: white!important;
    font-family:Your font type;
    color: Your color code;
    }
    #menu .ddsmoothmenu li li a:link, #menu .ddsmoothmenu li li a:visited {
    font-family: Your font type;
    color: Your color code;
    }
    #menu li.current_page_item a {
    color:Your color code;
    }
    #menu li a {
    color: Your color code;
    text-shadow:none;
    font-family:Your font type;
    }
     
    #menu li a:hover{
    color:Your color code;
    }
    #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 {
    color:Your color code;
    }
    #menu .ddsmoothmenu li li a.selected, #menu .ddsmoothmenu li li a:hover{
    color: Your color code;
    }
    This will solve your issue.
     
  3. ashybaby87

    ashybaby87 Member

    Joined:
    Dec 31, 2012
    Messages:
    36
    Likes Received:
    0
    Awesome, thank you!
     
Thread Status:
Not open for further replies.

Share This Page