Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML How to Make a Website Adding Pages to a Website Add a New Page

Derek Woodard
Derek Woodard
1,923 Points

Any idea why this is happening..?

https://dl.dropboxusercontent.com/u/25557395/Screenshot%202014-09-26%2006.49.48.png

I was able to get the image down into the section by putting a standard <br /> tag before the image but not sure why it's doing that.

1 Answer

Hi Derek,

It looks like you could be on firefox. That browser has issues with how that image interacts with the floated header.

You can add clear: both; to your existing wrapper div styles. This will make the wrapper div drop below the floated header.

#wrapper {
  clear: both;
}