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 trial

JavaScript AJAX Basics (retiring) AJAX and APIs Displaying the Photos

Helen King
Helen King
9,717 Points

I 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

give your ul a list-style of none.

ul {
  list-style: none;
}

I 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?

can you provide me with a snapshot of your workspace.