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

CSS How to Make a Website CSS: Cascading Style Sheets Take a Mobile-First Approach

My photos have a bullet point in the top left corner of each one...help?

Should have asked this earlier, but sadly I am just now noticing it. Somehow when I added the normalize.css everything worked as the example showed, except I have small bullet points to the top left corner of each of the images...weird.

4 Answers

Add this rule somewhere in your css:

ul {
    list-style-type: none;
}

If it's already there, check if something is wrong with it or that the css can not read it for some reason.

Seeing the vid you want to add it to the gallery ID in the main.css instead of the ul in this case.

BAM!!!! and done. Thank you so much. I though I broke something, yet havent touched the normalize.css folder

Oh missed your second response. However, the first suggestion worked. Does it matter?

As long as you understand what is being done, not really, i guess. I think the bullet points will get removed somehwere later in the course.

By adding it to the normalize it will remove all bullet points on all ul's ( except if you override it somewhere further down ). By adding it to the gallery ID it will only remove the bullet points in that ID.

Great!!! Again thank you. This is too much fun.

No problem! Enjoy the rest of the course.

And don't forget to vote best answer. ;)