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

CSS How to Make a Website Styling Web Pages and Navigation Make a CSS Image Gallery

Nancy Melucci
seal-mask
.a{fill-rule:evenodd;}techdegree
Nancy Melucci
Front End Web Development Techdegree Student 34,555 Points

Why 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
Lukas Steyer
10,889 Points

This should help you:

#gallery {
 margin: 0;
 padding: 0;
 list-style: none;
}
Shawn Flanigan
PLUS
Shawn Flanigan
Courses Plus Student 15,815 Points

It looks like you just tried to get too specific. You only need to target #gallery (not #gallery li).