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!
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
Gerrit Stricker
2,436 Pointsdisplay: 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

Christine Dawson
8,136 PointsShould the display:inline-block style be applied to the nav li element rather than nav ul?

Gerrit Stricker
2,436 PointsThat's it! Ugh thanks a lot, can't believed I missed that.