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

Ruby

2 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
Alan Johnson
7,625 Points

Happy Saturday, Tony McCabe! Can you provide a little more detail about where you are and what's going on?

Marcus Tisäter
Marcus Tisäter
4,886 Points

I guess you are using some kind of a framework? Bootstrap? Please let us know some more details about you're problem!

Jacob Lee
Jacob Lee
539 Points

For 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.

Passed it already thank you!!