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 trialHelen King
9,717 PointsI got my images to show up but each one has a bullet beside it for the unordered list....
would I add in a line of css to remove the bullets or was it something I missed in the flickr.js file?
2 Answers
Chyno Deluxe
16,936 Pointsgive your ul a list-style of none.
ul {
list-style: none;
}
Ben Flores
17,074 PointsI actually have the same problem, and applying
ul{
list-style: none;
}
makes sense! But, it didn't fix it. I combed through the provided main.css and on lines 1750-1752 there's already a
ol, ul {
list-style: none;
}
So my question ... why doesn't this work?
Chyno Deluxe
16,936 Pointscan you provide me with a snapshot of your workspace.