Page 1 of 1

Re: Background isn't "stretching"

Posted: Wed Jan 27, 2010 9:18 pm
by Jos
Hi Maarten, welcome to CMSms  :)

the cause of your problem is the float for the main div.

If you change the css for it to this, it will be allright

Code: Select all

#main {
	width: 70%;
	padding: 0; margin: 0 0 0 5px;
}
If you want to stick to the float, f.e. because you want a right column, you have to add a new div after #main and your column div. That new div needs clear: both; in the css.

Hope this helps  8)