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

Framework Basics Challenge task 4 of 4 Finally, create a divider directly above the "Hire Me!" link.

Can anybody explain to me where I'm going wrong with this one? Simple enough and I think I have given the correct answer but it's not being excepted.

Here's my code: <li class="devider"><li> <li><a href="#">Hire Me!</a></li> </ul>

You forgot close tag...

<ul class="dropdown"> <li><a href="#">About Treehouse</a></li> <li><a href="#">Video Library</a></li> <li><a href="#">Tracks</a></li> <li class="divider"></li> <li><a href="#">Plans & Pricing</a></li>
</ul>

7 Answers

Solved it! It was the correct code after-all but for some reason it didn't work earlier! Thanks all the same for your time.

You're supposed to add a divider above the "Hire Me!" link, yet I can't see the link anywhere in the code? Am I missing something?

You forgot close tag...

<ul class="dropdown">

<li><a href="#">About Treehouse</a></li>

<li><a href="#">Video Library</a></li>

<li><a href="#">Tracks</a></li> <li class="divider"></li>

<li><a href="#">Plans & Pricing</a></li> </ul>

I'm afraid I can't see your code. Can you try and repaste it?

Sorry! I thought I posted it. :)

     <ul class="dropdown">
            <li><a href="#">About Treehouse</a></li>
            <li><a href="#">Video Library</a></li>
            <li><a href="#">Tracks</a></li>
            <li class="divider"></li>
            <li><a href="#">Plans &amp; Pricing</a></li>                
          </ul>

No problem :)

Vipin Singh
Vipin Singh
15,268 Points
 <ul class="dropdown-menu">
       <li><a href="#">About Treehouse</a></li>
       <li><a href="#">Video Library</a></li>
       <li><a href="#">Learning Adventures</a></li>
       <div class="divider"></div>
       <li><a href="#">Plans &amp; Pricing</a></li>
       </ul>