Squirrel Theme color changes

Discussion in 'Squirrel WordPress Theme' started by erinbro, Jun 20, 2013.

  1. erinbro

    erinbro Member

    Joined:
    Dec 28, 2011
    Messages:
    52
    Likes Received:
    1
    Hi, could you please tell me how to change the colors to a specific color code for:

    1. Menu
    2. Footers

    This is just for the background color, not the text.

    Thank you.

    Erin
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    1. For Menu issue,
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    #menu li.current-menu-item a, #menu li.current_page_item a {
    background: #3ca7c7;
    }
    #menu li.current-menu-parent a, #menu li.current_page_parent a, #menu li a.selected, #menu li a:hover{
    background: #3ca7c7;
    }
    #menu .ddsmoothmenu {
    background: #4f8bc9;
    }
    
    You can put your color or color code inplace of "#3ca7c7" and "#4f8bc9" .

    2. For the footer issue,
    Paste this code in Custom CSS
    Code:
    .footer {
    background-color: #4f8bc9;
    }
    You can put your color or color code inplace of "#4f8bc9" .
    This will solve your issue.
     
  3. erinbro

    erinbro Member

    Joined:
    Dec 28, 2011
    Messages:
    52
    Likes Received:
    1
    Thank you, that worked perfectly.


    Could you please give me the code to change the background color of the drop down menu.

    Thank you.
     
  4. 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:
    #menu .ddsmoothmenu li li a:link, #menu .ddsmoothmenu li li a:visited {
    background-color: red;
    }
    #menu .ddsmoothmenu li li{
    background-color: red;
    }
    Inplace of "red" put your color code.
     

Share This Page