Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Diego Murray
2,515 PointsNav 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.
1 Answer

Greg Adams
13,268 PointsHi 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