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

Bug or something idk

Everytime i get to task 3 and type something it keeps saying either got task 1 wrong or task 2 and it wont let me get past task 3,,,, Picture of whats happening http://gyazo.com/f8ad5ca0e4ad97e8e4e67b8dc2163382 http://teamtreehouse.com/library/html/lists/html-lists

1 Answer

Shawn Flanigan
PLUS
Shawn Flanigan
Courses Plus Student 15,815 Points

Task 3 asks you to create a new ul without deleting the ol you already created. From your screenshot, it looks like you're changing the original ol to a ul. Try leaving it as an ol and making a new ul beneath it.

Shawn Flanigan
Shawn Flanigan
Courses Plus Student 15,815 Points

So...it should look something like this:

<ol>
  <li>Stop</li>
  <li>Drop</li>
  <li>Roll</li>
</ol>
<ul></ul>

Oh ok thanks for the help!