MyBB Community Forums

Full Version: Extending Content
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
http://thewebfanatic.org/

The content with the greyish background and the black border on the left and right needs to connect all the way to the nav area and all the way to the bottom menu. How do I do this?
repeat background image both horizontally & vertically ?
body {background: url(background-image-url) repeat;}
Just vertically.
^ background image used for body element is 100px x 200px and you want it to cover entire forum.
for that you need both horizontal and vertical repeat. simple method is just using repeat in style.
You can read here more about CSS image repeat Smile

http://www.w3schools.com/cssref/pr_backg...repeat.asp
I am using a div...

div#content {
	background:#f7f7f7;
        border-left:1px solid #000000;
        border-right:1px solid #000000; 
        padding: 5px 10px;
        margin-top: 0px;
}

It is overlaying the background image. Sorry I did not make it clearer.