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

Steve Pierce
PLUS
Steve Pierce
Courses Plus Student 1,091 Points

I want to move the navigation bar from vertical to horizontal

I want to display a second navigation bar horizontally and for all items within the horizontal nav list, to display as block with a width of 12.5% floated on the left margin.

/* Horizontal Navigation List Styles */

.horizontal-nav li { display: block; width: 12.5%; float: left; }

3 Answers

try adding overflow: scroll; to your CSS

You can add overflow property to auto which will adjust the alignment of the content.

example: float : auto;