• Hey there
    I just changed the background image on my blog ,and it doesn’t match the color of the border that is appearing around my body. I inspected the element and saw that the code is under #page in the style.css sheet, and I tried to play around with it, but it just messes up all my alignments.

    Can anybody tell me exactly how to take it out, or at least change its color?

    I’m at http://mommymiracles.com/ Hopefully you’ll be able to see what I am talking about.

Viewing 2 replies - 1 through 2 (of 2 total)
  • make a backup copy of your theme files before editing.
    edit style.css, and remove the lines with ‘backgrond’ in the following places, or put a matching color code:
    (for instance, change from:
    background:url(images/bgr_wrapper.png) repeat-y;
    to
    background: #123456;
    where #123456 is the color code of your choice.)

    #wrapper{
    	width:1000px;
    	background:url(images/bgr_wrapper.png) repeat-y;
    	margin:0px auto;
    }
    #page{
    	width:942px;
    	padding:0 29px 0 29px;
    	background:url(images/bgr_page.png) no-repeat;
    }
    /*header_top*/
    #header_top{
    	width:100%;
    	height:41px;
    	overflow:hidden;
    	background:url(images/bgr_header_top.png) no-repeat;
    }
    #footer{
    	width:100%;
    	height:132px;
    	background:url(images/bgr_footer.png) no-repeat;
    	overflow:hidden;
    }

    Oeps, too slow here.
    Color/numbers are found here
    http://www.colorschemer.com/online.html

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