• Hi everyone, I need help matching the colors on this page. I want the Blue/Green part of the containers on the right side (Calander, Courses, Links) to match dark blue background. I could get the background color changed, but I can’t figure out where the code is to change those boxes on the right.

    Also, I’m trying to get rid of the search bar on the top navigation where it has a form and a go button. I went in and mutilated the code and got weird results so I uploaded the saved page. I know it has to be a simple deletion but I’m afraid of cutting too much.

    Thanks for the help.

    Dan

Viewing 4 replies - 1 through 4 (of 4 total)
  • I can’t figure out where the code is to change those boxes on the right.

    The color codes will almost certainly be in your theme’s stylesheet.

    Also, I’m trying to get rid of the search bar on the top navigation where it has a form and a go button.

    Probably requires an edit to sidebar.php but as you haven’t provided a web address, it’s difficult to provide anything more precise.

    Thread Starter dblast

    (@dblast)

    Whoops, that was dumb on my part:

    http://www.cdtsystem.com/wordpress/

    Thanks

    The background color for the tabs in your sidebar is actually an image in your theme’s images folder and is specified in the spring_flavour.css file:

    #subcontent h2 {
    background:#0180B7 url(../images/spring_flavour/corner_top_left.gif) no-repeat left top;
    color:white;
    }
    #subcontent h2 em {
    background:transparent url(../images/spring_flavour/corner_bottom_right.gif) no-repeat right bottom;
    }

    The search form will probably be in header.php. Try looking for <?php get_search_form();?> in that file and removing it.

    Thread Starter dblast

    (@dblast)

    Excellent thanks!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Beginner needs help with colors’ is closed to new replies.