|
Your floated divs are "out of the document flow" from the perspective of their containing divs of wrapper and content. That's why the wrapper and content are not including them. There are several ways to resolve this, I tend to use overflow:auto in the surrounding div.
Also your width attribute on the logo is wrong, it should just be width="1200". Or better yet use a width in css.
Dave
|