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 trialNancy Melucci
Courses Plus Student 36,143 PointsWhy doesn't this code work for code challenge item 2? (remove margin, padding, bullets).
thanks in advance -
#gallery li {
margin: 0;
padding: 0;
list-style: none;
}
2 Answers
Lukas Steyer
10,889 PointsThis should help you:
#gallery {
margin: 0;
padding: 0;
list-style: none;
}
Shawn Flanigan
Courses Plus Student 15,815 PointsIt looks like you just tried to get too specific. You only need to target #gallery
(not #gallery li
).