Support » Themes and Templates » how to remove the blue border on my page?

  • http://www.vcestudyguides.com

    As you can see, I have a vertical blue border next to my 1024 width page. Can anyone share what code this would be because I cannot seem to locate it in order to remove it?

    Additionally, how can I change my body from white to an off white colour? Again I cannot locate this code.

    Thank you!

Viewing 1 replies (of 1 total)
  • both issues are caused by the background image:

    /wp-content/themes/lorem-ipsum/i/container_bg.gif

    called here in style.css of you theme:

    div#wrapper {
    background:url("i/container_bg.gif") repeat-y scroll right top;
    width: 1024px;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    }

    edit this line

    background:url("i/container_bg.gif") repeat-y scroll right top;

    to add a background color (off-white) and remove the background image;
    or
    edit the graphic image container_bg.gif

    http://www.w3schools.com/css/css_background.asp

Viewing 1 replies (of 1 total)
  • The topic ‘how to remove the blue border on my page?’ is closed to new replies.