Home › Forums › CSS › [Solved] How to position a page layout? › Reply To: [Solved] How to position a page layout?
September 26, 2014 at 7:12 am
#184802
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 */
}