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 trialraymond pope
10,614 PointsFramework 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>
7 Answers
raymond pope
10,614 PointsSolved it! It was the correct code after-all but for some reason it didn't work earlier! Thanks all the same for your time.
Katarzyna Fijolek
14,494 PointsYou'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?
Ary de Oliveira
28,298 PointsYou 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>
Katarzyna Fijolek
14,494 PointsI'm afraid I can't see your code. Can you try and repaste it?
raymond pope
10,614 PointsSorry! 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 & Pricing</a></li>
</ul>
Katarzyna Fijolek
14,494 PointsNo problem :)
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 & Pricing</a></li>
</ul>
Ary de Oliveira
28,298 PointsAry de Oliveira
28,298 PointsYou 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>