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

HELP

First, give the .main-logo element Bootstrap's class for floating left.

http://teamtreehouse.com/library/framework-basics/build-a-website-with-bootstrap/building-with-bootstrap

WHERE DO I PUT THE CSS?

2 Answers

Since Bootstrap has predefined classes for you to use you will not need to write any css for this question. What you are looking to do is add bootstrap's float left class, which is pull-left, to the main logo in html. Like so:

<a class="main-logo pull-left" href="#">Ribbit</a>

Hi Lyric, I'm not sure if I'm understanding your question 100% but the CSS is already included. You just have apply Bootstrap's already defined class names to make it do what you want. So far example with the fist one you'd just add the class name pull-left to the existing class .main-logo.