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 trialNancy Melucci
Courses Plus Student 36,143 PointsI don't understand why I am not getting credit for #5 of 6 on this challenge.
I was asked to nest the ordered list into the "Shapes" item...I did this.
<ul>
<li>Shapes</li>
<ol>
<li> Stop</li>
<li> Drop</li>
<li> Roll</li>
</ol>
<li>Colors</li>
</ul>
I do not understand why it isn't right therefore I cannot correct it. Please help.
4 Answers
Nancy Melucci
Courses Plus Student 36,143 PointsThanks everyone...I realized I was doing a couple of things wrong. Sorry to bother. Got it now. Gratitude.
Chase Lee
29,275 PointsNancy Melucci, you need your ol
to be inside of your "Shapes" li
.
<li>Shapes
<ol></ol>
</li>
Kidist Admasu
11,020 Points<ul>
<li>Shapes
<ol>
<li>Stop</li>
<li>Drop</li>
<li>Roll</li>
</ol>
</li>
<li>Colors</li>
</ul>
```
this is the correct way to nest it.
Jason Anello
Courses Plus Student 94,610 PointsYou should leave the stop, drop, roll list where it was at above the unordered list. You're not supposed to nest that list inside the "Shapes" list item.
You should create a new ordered list to nest inside the "Shapes" list item. It should come after the word "Shapes" and before the closing </li>
Jason Anello
Courses Plus Student 94,610 PointsJason Anello
Courses Plus Student 94,610 PointsHI Nancy,
See this iink for how to post code: https://teamtreehouse.com/forum/posting-code-to-the-forum