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 trialCharlie Morris
971 PointsWhat have I done wrong here?
What have I done wrong with the display property in the challenge step? Also why do all the challenges keep crashing can support please fix it?
Charlie Morris
971 Pointsnav ul { margin: 0 10px; padding: 0; list-style: none; display: inline-block; }
2 Answers
Evan Demaris
64,262 PointsHi Charlie,
The challenge is asking for you to select the list items - li - and change the display, not the unordered list.
nav ul { margin: 0 10px; padding: 0; list-style: none; }
nav li { display: inline-block; }
I don't know why your Challenges are crashing, I only ever have problems with that when my internet connection isn't stable.
Hope that helps!
Charlie Morris
971 PointsThanks mate
Max Kutner
7,595 PointsThis worked! Please lemme know if doesn't make sense!
nav ul { margin: 0 10px; padding: 0; list-style: none; }
nav li { display: inline-block; }
nav a { font-weight: 800; padding: 15px 10px; }
Best, Max
Evan Demaris
64,262 PointsEvan Demaris
64,262 PointsHi Charlie, your code didn't attach; could you manually add it, so I can see what went wrong?