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 trialBei Zhang
Courses Plus Student 7,113 Pointswhy "Oops! It looks like Task 1 is no longer passing." appears when i try to check Task 2?
why "Oops! It looks like Task 1 is no longer passing." appears when i try to check Task 2? what should i do
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Nick Pettit</title>
</head>
<body>
<header>
<a href="index.html">
<h1>Nick Pettit</h1>
<h2>Designer</h2>
</a>
<nav>
<ul>
<li><a href="index.html">Portfolio</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section>
<ul>
<li>
<img src="img/numbers-01.jpg" alt="">
</li>
<li>
<img src="img/numbers-02.jpg" alt="">
</li>
<li>
<img src="img/numbers-06.jpg" alt="">
</li>
</ul>
</section>
<footer>
<a href="http://www.baidu.com>
<img src="img/facebook-wrap.png" alt="facebook logo"></a>
<a href="http://www.qq.com>
<img src="img/twitter-wrap.png" alt="twitter logo"></a>
<p>© 2013 Nick Pettit.</p>
</footer>
</body>
</html>
2 Answers
Helmut Granda
10,343 PointsThis is just a general suggestion but I have run into some challenges where task 2 is failing but task 1 is being reported as the one with the error.
I would recommend to look at your current task in more detail before ensuring that task 1 is in fact at fault.
For example in an instance task 1 was only to declare a variable while step 2 was the use of a variable along with a method. Task 2 had a misspell on the method used but task 1 was listed as not longer passing. I knew for a fact that was not the case and was able to figure out this bug.
Bei Zhang
Courses Plus Student 7,113 Pointsthx, indeed i need to be more careful!
Helmut Granda
10,343 PointsNot your fault! I think TTH should tackle this issue since there are plenty of threads just like yours.