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 trialEric Leisenring
844 PointsMy 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
elk6
22,916 PointsAdd 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.
Eric Leisenring
844 PointsBAM!!!! and done. Thank you so much. I though I broke something, yet havent touched the normalize.css folder
Eric Leisenring
844 PointsOh missed your second response. However, the first suggestion worked. Does it matter?
elk6
22,916 PointsAs 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.
Eric Leisenring
844 PointsGreat!!! Again thank you. This is too much fun.
elk6
22,916 PointsNo problem! Enjoy the rest of the course.
And don't forget to vote best answer. ;)
elk6
22,916 Pointselk6
22,916 PointsSeeing the vid you want to add it to the gallery ID in the main.css instead of the ul in this case.