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

Diego Murray
Diego Murray
2,515 Points

Nav bar NOT at the top of page. Stuck above h1.

I want my Navbar at the top of my website and to be responsive. However, right now I'm not quite sure how to raise it from where it is now without pushing h1 downward.

https://w.trhou.se/h0zr3s4qee

1 Answer

Hi Diego, Looks like your Nav bar is included in the .hero div, which has a {padding-top: 170px}. If you take the Nav bar out of this div (by opening the .hero div below the Nav bar) it should sit at the top.

<body> <!-- removed .hero div --> <nav> <ul> <li><a href="index.html">Home</a></li> <li><a href="about.html">About</a></li> <li><a href="portfolio.html">Portfolio</a></li> <li><a href="contact.html">Contact</a></li> </ul> </nav> <div class="hero">

Greg