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 How to Make a Website Creating HTML Content Organize with Unordered Lists

web design challenge task 1 no longer passing

Every time I submit my html in task 2 I get an error message that task 1 is no longer passing. When I go back to task 1 and resubmit it without making any alterations it passes. However I still continue to get the same error message as soon as I try and resubmit task 2. Why is task 1 passing when I submit it, but no longer passing when I submit task 2?

6 Answers

thats the problem, remove the images, you need EMPTY list-items...

also, remove the <nav> and </nav> tags in section, it is not required...

Got it! Thank you!

your welcome! enjoy and good luck with the next challenges :)

Blaize Pennington
Blaize Pennington
13,878 Points

If you show me the code you are using, I might be able to help you further. One issue that I saw someone having with the same challenge was adding links to the images... make sure you are not adding any links yet.

Be sure to add empty list-items and it should work :)

Here's the code I've entered for task 2. No links at all, just the image without caption or alt attributes. Let me know if you need to see any more.

   <section>
      <nav>
        <ul>
          <li>
            <img src="img/numbers-01.jpg" alt="">
          </li>
          <li>
            <img src="img/numbers-02.jpg" alt="">
          </li>
          <li>
            <img src="img/numbers-12.jpg" alt="">
          </li>
        </ul>
      </nav>
    </section>

Also, I restarted the challenge and submitted task 2 immediately after passing task 1, without entering any changes to the code and still got the same message that task 1 was no longer passing.

Removed the nav tag from your section elelment