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

HTML Build a Simple Website Creating a Website Structure Working with Grids

Diane Robertson
Diane Robertson
3,837 Points

navigation & intro not wrapping around logo

Hi There, I can't seem to wrap my navigation & introduction up and to the right of the logo. I have watched from 4:00 + over and over and can't figure out what I'm doing wrong! This is from the point where we add our first grid class.

My code is as follows:

 <link rel="stylesheet" href="css/normalize.css" type="text/css" media="screen">
 <link rel="stylesheet" href="css/grid.css" type="text/css" media="screen">
 </head> 

<body>
 <div class="container clearfix">
 <div class="grid_4">
 <img src="img/logo.gif" alt="Smells Like Bakin" 
 </div>```

2 Answers

Diane Robertson
Diane Robertson
3,837 Points

Never mind. I lost the closing bracket > after "Smells Like Bakin" somewhere along the way. Problem solved!

Hi Diane,

The only things I can see from the code you posted is a missing closing div </div> at the end, no closing bracket after "Smells Like Bakin", and it looks like you have a back-tick ` or something after your closing div.

Jeff

 <div class="container clearfix">
 <div class="grid_4">
 <img src="img/logo.gif" alt="Smells Like Bakin" >
 </div>
</div>