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

CSS

CSS Layout Resizing

Hi I am having an issue with a project. My layout is breaking/behaving strangely between 1024px and 1063px. For some reason my profile image jumps about, I cant seem to find the source using chrome dev tools.

Would people be kind enough to take a look at my code and help me source whats causing the issue? I have included a treehouse snapshot link below.

Thanks

https://w.trhou.se/guvr4xz6b8

2 Answers

Jonathan,'

Try a clear fix on the nav element in the 1024 media query

nav::after {
   content: "";
   display: table;
   clear: both;
}

That fixed it thanks, I must have added a clearfix to every other element and missed out the nav. Its always the little things.