Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] How to position a page layout? Reply To: [Solved] How to position a page layout?

#184802
Paulie_D
Member

Looks like you forget to clear a float somewhere.

Not sure why you are floating the #content div…but this seems to fix the issue


#content {
text-align: left;
width: 710px;
margin-top: 10px;
padding: 20px 20px 0 0;
/* float: left;  remove this */
overflow: hidden; /* or some other clearing method */
}