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 HTML Lists HTML Lists

Nancy Melucci
PLUS
Nancy Melucci
Courses Plus Student 36,143 Points

I 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.

HI Nancy,

See this iink for how to post code: https://teamtreehouse.com/forum/posting-code-to-the-forum

4 Answers

Nancy Melucci
PLUS
Nancy Melucci
Courses Plus Student 36,143 Points

Thanks everyone...I realized I was doing a couple of things wrong. Sorry to bother. Got it now. Gratitude.

Chase Lee
Chase Lee
29,275 Points

Nancy Melucci, you need your ol to be inside of your "Shapes" li.

<li>Shapes
    <ol></ol>
</li>
<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.

You 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>