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 trialDaniel Deleuran
4,427 PointsThe position of the navigation
Hi!
When Nick is making the nav-bar floating to the left - in the video it centers in the header (top-bottom). Mine moves almost to the top, except for those 10px (padding) that is written in the main.css? Any ideas :) /D
Daniel Deleuran
4,427 PointsThanks Joel! I just wonder how come I didn't get the result just by following along the videos. Perhaps I oversaw something :) /D.
Joel Acevedo
14,420 PointsJoel Acevedo
14,420 PointsThere are several ways to vertically align elements using CSS. Try changing the nav-bar to DISPLAY: INLINE-BLOCK. Doing so will allow you to use VERTICAL-ALIGN: MIDDLE.
If you know the height of the header, you can use LINE-HEIGHT or you can position the element with TOP, MARGIN-TOP and HEIGHT.
Hope this helps!