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 trialMohamoud Dandan
7,133 Pointsi do not know what this message means: Oops! It looks like Task 3 is no longer passing. i got this message after i
Oops! It looks like Task 3 is no longer passing.
what this means ?
2 Answers
Cory Harkins
16,500 PointsTasks no longer pass if you delete or modify the previous challenge solutions, i.e;
Task 1: Target all li elements and give them a color of white.
li {
color: white;
}
Task 2: Target all img elements and give them a max-width of 300px.
li img {
max-width: 300px;
}
The right response may actually be:
li {
color: white;
}
img {
max-width: 300px;
}
Truthfully, it's probably not a major error, and you are just over-looking some small detail. :)
Mohamoud Dandan
7,133 Pointsthank you