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!
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
Tony McCabe
8,445 Points2 of 5 Tryed to add <div class="navabar">
<!DOCTYPE html> <html> <head> <title>Treebook</title> <%= stylesheet_link_tag 'application' %> </head> <body> <div class="navabar"> <div class="container"> <%= yeild %> </div> </div> </body> </html>
4 Answers

Alan Johnson
7,625 PointsHappy Saturday, Tony McCabe! Can you provide a little more detail about where you are and what's going on?

Marcus Tisäter
4,886 PointsI guess you are using some kind of a framework? Bootstrap? Please let us know some more details about you're problem!

Jacob Lee
539 PointsFor anyone coming upon this later, like I did:
Make sure your Navbar div is not nested around the container div. Just like in the video, you're making a 'header' menu area separate from the body.

Tony McCabe
8,445 PointsPassed it already thank you!!