Change Color and Font in Tab Bar

Discussion in 'BlackBird WordPress Theme' started by rapidresults, Mar 13, 2013.

  1. rapidresults

    rapidresults Guest

    Joined:
    Feb 5, 2012
    Messages:
    44
    Likes Received:
    0
    Hi:

    I'd like to change the color of font for the items in the tab bar to white.

    I'd also like to change the font to be Helvetica.

    Please advise.

    Thank you.
     
  2. Harmeet

    Harmeet Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    360
    Likes Received:
    15
    Put the following code in your custom css

    Appearance -> theme options -> styling options -> custom css
    Code:
    #menu li.current_page_item a {
    color: black;
    }
    #menu li a {
    color: black;
    }
    #menu li a:hover {
    color: black;
    }
     
    #menu li a:hover.selected {
        color:black;
    }
    #menu .ddsmoothmenu li li {
        color:black;
    }
    #menu .ddsmoothmenu li li a.selected, #menu .ddsmoothmenu li li a:hover {
        color: black;
    }
    #menu .ddsmoothmenu li {
        color:black;
    }
    #menu .ddsmoothmenu li li a:link, #menu .ddsmoothmenu li li a:visited {
        color: black;
    }
    #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:black;
    }
    #menu li a {
    font-family:Helvetica;
    }
    You can change the color to your color value.

    This will solve your problem.

    Thanks.
     

Share This Page