Change colors of navigation bar

Discussion in 'ReThink WordPress Theme' started by gloryous, Apr 30, 2015.

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

    gloryous Member

    Joined:
    May 25, 2012
    Messages:
    223
    Likes Received:
    8
    Hello,

    I would like to change the colors of the navigation bar from two(2) different gray colors to two(2) shades of green.

    http://www.lowellroutley.com/

    Can you please provide code?

    Thank you.
     
  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hello, Gloryous!

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    #menu .ddsmoothmenu {
      background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, green), color-stop(0.5, green), color-stop(0.51, green), color-stop(1, green));
      background-image: -moz-linear-gradient(center bottom, green 0%, green 50%, green 51%, green 100%);
      background-color: green;
    }
    #menu li.current-menu-item a,
     #menu li.current_page_item a,
     #menu li.current-menu-parent a,
     #menu li.current_page_parent a,
     #menu li a.selected, #menu li a:hover {
      background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #094B09), color-stop(0.5, #1C4D07), color-stop(0.51, #18500B), color-stop(1, #18430B));
      background-image: -moz-linear-gradient(center bottom, #3F3F3F 0%, #383838 50%, #434343 51%, #555555 100% );
      background-color: #2E9715;
      -moz-box-shadow: inset 0 0 5px 5px #535353;
      -webkit-box-shadow: inset 0 0 5px 5px #535353;
      box-shadow: inset 0 0 5px 5px #0F5F08;
    }#menu li {
      border-right: 1px solid #134B02;
    }
    Thanks,
    Praveen
     
  3. gloryous

    gloryous Member

    Joined:
    May 25, 2012
    Messages:
    223
    Likes Received:
    8
    Thank you.
     
Thread Status:
Not open for further replies.

Share This Page