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 trialJordan Hubbard
374 PointsIt won't line it a row. It's still a list.
Okay so basically it just stays laid out weird they aren't in one row like in the video it is still in a list format.
Here is the link of code I am talking about. Go to the folder css and then click main.css and then scroll down to the very bottom where it says nav li { bla bla bla } That is where it is suppose cahnge it from a list into a row. Please respond as soon as you can so I can get back to learning :D. Thanks!
Link to code... https://w.trhou.se/qosl7hw9sf
2 Answers
Robert Vaida
8,718 PointsHello
Try adding display: inline-block to your unordered list. Ex:
nav ul { display: inline-block; }
Robert Vaida
8,718 PointsDelete the display: inline-block delegation from the li elements.
Jordan Hubbard
374 PointsWorked Thanks!
Jordan Hubbard
374 PointsJordan Hubbard
374 PointsThat worked but it made the text all in one spot so now all the words are smushed together.