• Could someone help me out, I’m trying to change a ittle quirk in the design of my site.

    The address is http://www.jacobteal.com/development-zone/. At the bottom of the page is a dark blue bar that i’d like to get rid off.

    I’ve tried to poke around in the Stylesheet but I can’t seem to find a way to get rid of it.

    Any help would be much appreciated, thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • the dark blue bar is caused by the vertical repetiton of the background image in the body style;
    as this is embedded into header:

    body { background-color: #1F49C9; background-image: url('http://www.jacobteal.com/development-zone/wp-content/uploads/2011/08/no2background.jpg'); background-repeat: repeat; background-position: top left; background-attachment: scroll; }

    it possibly comes from some theme background options under dashboard -> appearance -> background;
    if you can’t set it there to only repeat in x direction, you might need to add this:
    background-repeat: repeat-x!important;
    to the body style in style.css of your theme.

    Thread Starter J_Teal

    (@j_teal)

    Oh of course I hadn’t thought of that!

    I’ll just make the background image slightly bigger. Thanks for your help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Design Help’ is closed to new replies.