Changing Menu Colour

Discussion in 'Local Business WordPress Theme' started by cashbigger, Apr 11, 2013.

  1. cashbigger

    cashbigger New Member

    Joined:
    Feb 28, 2013
    Messages:
    24
    Likes Received:
    0
    http://devwpsite.stairliftsdoctor.co.uk

    I want the menu option for Stairlift News to be dark red to match the BBC logo on homepage. So instead of blue like the other ones. To make it red. Is this possible?
     
  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-item-738 a {
    color: red!important;
    }
     
  3. cashbigger

    cashbigger New Member

    Joined:
    Feb 28, 2013
    Messages:
    24
    Likes Received:
    0
    Is it possible to change the background of that part of the menu to be red but keep the text white? I put in the CSS code but it has made just the text red. I would like background of that part of menu bar to be red, text to stay white. Can I have CSS for this please.
     
  4. 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-item-738 a {
    background: yellow!important;
    }
     
  5. cashbigger

    cashbigger New Member

    Joined:
    Feb 28, 2013
    Messages:
    24
    Likes Received:
    0
    thanks for that. Is it possible to use hex codes in some kind of format? I have tried red and maroon to try and match the BBC logo but neither are correct. I want to use a hex is this possible?
     
  6. Nitesh

    Nitesh Support Staff

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

    Yes you can use hex color value too in place of color name.
    For example

    #menu-item-738 a {
    background: #FFFF00!important;
    }
     

Share This Page