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

Gerrit Stricker
Gerrit Stricker
2,436 Points

display: inline-block ... where's my error?

Hey guys, must be missing something obvious here but how come following isn't working on stage 6 - code challenge 3/4?

nav ul { margin-top: 0px; margin-bottom: 0px; margin-left: 10px; margin-right: 10px; list-style: none; padding: 0; display: inline-block; }

2 Answers

Should the display:inline-block style be applied to the nav li element rather than nav ul?

Gerrit Stricker
Gerrit Stricker
2,436 Points

That's it! Ugh thanks a lot, can't believed I missed that.