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 trialMolly Christison
4,882 PointsLinked normalize.css to index.html, but I can't get rid of my bullet points
For some reason, the bullet points aren't disappearing on my webpage like they are in the video after linking normalize.css to my index.html. Not sure what's going on. It looks like maybe there are a couple broken lines of code in the file I downloaded?
2 Answers
Zach Twery
Courses Plus Student 257 PointsFor other bullet points that it doesn't remove you can also add this to the normalize.css or another external css document.
li { list-style-type: none; }
none should remove the bullets from all list items
Molly Christison
4,882 PointsYay! That totally worked! Thank you!
Zach Twery
Courses Plus Student 257 PointsNo problem!