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 trialRyan Libby
3,197 Pointsweb 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
dorzki
4,312 Pointsthats the problem, remove the images, you need EMPTY list-items...
Ryan Libby
3,197 PointsGot it! Thank you!
dorzki
4,312 Pointsyour welcome! enjoy and good luck with the next challenges :)
Blaize Pennington
13,879 PointsIf 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.
dorzki
4,312 PointsBe sure to add empty list-items and it should work :)
Ryan Libby
3,197 PointsHere'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.
Blong Cha
8,814 PointsRemoved the nav tag from your section elelment
dorzki
4,312 Pointsdorzki
4,312 Pointsalso, remove the
<nav>
and</nav>
tags in section, it is not required...