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!
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
Nancy Melucci
Front End Web Development Techdegree Student 34,555 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
).