Change menu nav bar and font colour

Discussion in 'Cloriato WordPress Theme' started by imogen, Oct 25, 2013.

Thread Status:
Not open for further replies.
  1. imogen

    imogen Member

    Joined:
    Oct 15, 2013
    Messages:
    56
    Likes Received:
    0
    Hi...

    Bit of a newbie to wordpress!

    I want to change the background colour on my main menu underneath the header.. and i also want to change the font colour. How do I do this?
     
  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:
    .header_wrapper {
    background: red;
    }
    #menu li a {
    color: blue;
    }
    
     
  3. imogen

    imogen Member

    Joined:
    Oct 15, 2013
    Messages:
    56
    Likes Received:
    0
    Thank you!

    But it turns the whole header red, I just wanted my menu bar in blue! Is there a way to do that?
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

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

    Code:
    #menu li a {
    color: your color value;
    }
    #menu .ddsmoothmenu {
    background: your color value!important;
    }

    Add your color in place of "your color value".
     
  5. imogen

    imogen Member

    Joined:
    Oct 15, 2013
    Messages:
    56
    Likes Received:
    0
    Thanks very much!
     
Thread Status:
Not open for further replies.

Share This Page