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 trialBrian Flieck
1,060 PointsSelect the element with the ID gallery. Then, remove the margin, padding, and bullet points.
i keep adding this, and even went back to the video, what am i doing wrong?
#gallary {
margin:0;
padding:0;
list-style:none;
}
YASH NAIR
3,463 Pointsthe spelling of gallery is wrong it is gallery not gallary
8 Answers
Jace Nguyen
484 PointsIt's confusing that you have to put the code on top in order for it to pass
Stone Preston
42,016 Points#gallary {
you misspelled gallery. try using
#gallery {
margin:0; padding:0; list-style:none;
}
Simon Attfield
21,073 PointsHay Brian,
If what you've put here is exactly what you're using then to select an ID you need a specific symbol at the start of the ID name in your stylesheet.
Didn't want to just give you the answer, but if your still stuck let me know. Oh, check your spelling too :)
Stone Preston
42,016 Pointshe put it there, he just didnt format his code so it doesnt show up in the forum.
Simon Attfield
21,073 PointsOhhhh....sorry, took too long to reply anyway. I'll go back to sleep :)
valentino
4,452 Pointsgallery {
margin: 0; padding: 0; list-style: none; }
Yousef Osman
1,268 Pointsit's gallery not gallary ..... the wrong letter cancelled the effect of the ID
MUZ140686 Makeson Nyaruwabvu
5,000 Pointstry this, #gallary{ margin:0; padding:0; list-style:none; }
Fabio Souza
6,946 PointsIt's easy, below your img classes create a new class ;
gallery {
margin: 0; padding: 0; list-style: none;
}
stephenallison
8,559 PointsThe key is to make sure you include all gallery's. # give you this option.
Irfan Setiadi
Courses Plus Student 2,638 Points#gallery {
margin : 0;
padding : 0;
list-style : none;
}
Stone Preston
42,016 PointsStone Preston
42,016 PointsIve formatted your code for you so it shows up in the forum correctly. see this post for detailed instructions on code formatting. Or you can watch the tips for asking questions video on the right side of the page