Background isn't "stretching"

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Post Reply
Jos
Support Guru
Support Guru
Posts: 4019
Joined: Wed Sep 05, 2007 8:03 pm

Re: Background isn't "stretching"

Post 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)
Post Reply

Return to “Layout and Design (CSS & HTML)”