Colorway Change Menu Color Tabs and Background?

Discussion in 'ColorWay WordPress Theme' started by irissalmins, Oct 25, 2012.

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

    irissalmins Member

    Joined:
    Jul 22, 2012
    Messages:
    50
    Likes Received:
    0
    Can the background color of the navigation menu area and the color of the tabs be changed?



     
  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 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 {
    background:red!important;
    }
    Inplace of "red" put your color value.
     
  3. irissalmins

    irissalmins Member

    Joined:
    Jul 22, 2012
    Messages:
    50
    Likes Received:
    0
    Thanks! That worked great for the tabs. What about the background of the menu area?
     
  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 .ddsmoothmenu {
    background: green;
    }
    Inplace of "green" put your color value.
     
  5. irissalmins

    irissalmins Member

    Joined:
    Jul 22, 2012
    Messages:
    50
    Likes Received:
    0
    Thanks.

    Worked great!

    Is there a way to make the entire menu area that new background color? How would I change the font color?
     
  6. Harmeet

    Harmeet Support Staff

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

    Appearance -> theme options -> styling options -> custom css
    Code:
    .header .menu-bar {
    background: black;
    }
    This code will change the color of the menu background.

    Code:
    #menu li a {
    color: 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: red;
    }
     
    #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: red;
    }
    This code is to change the text color, you can change the color value according to your requirement.

    This will solve your problem.

    Thanks.
     
  7. irissalmins

    irissalmins Member

    Joined:
    Jul 22, 2012
    Messages:
    50
    Likes Received:
    0
    You guys are great! I appreciate y'all so much!
     
Thread Status:
Not open for further replies.

Share This Page