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

HTML How to Make a Website Creating HTML Content Include External CSS

I am using the normalize.css but the photos still have bullet points, why?

I am using the normalize.css file but the li that has the images for the web page in still has bullet points, please tell me how to fix this. Thanks

3 Answers

Brandon Barrette
Brandon Barrette
20,485 Points

So normalize.css just normalizes the properties on attributes so that they are the same on each browser. Chrome styles things one way, Safari another, etc... Normalize.css won't remove bullet points, those are standard on unordered lists.

If you want to remove the bullet points from an unordered list, you need to apply that style to the ul

ul {
  list-style: none;
}

Why does the normalise function take away the bullet points from the Navigation items but not the photos?

Bryan Merlos
Bryan Merlos
1,399 Points

@kavi Sivyer. Where did you add the code ul { list-style: none; } ? can you please provide the code for me to get a better understanding. I feel as I am on the same page as you. In the video the bullet points seem to go away once adding <link rel="stylesheet" href="css/normalize.css">. For me that was not the case.

Brandon Barrette Hello! I'm having the same issue where the bullet points to my unordered lists didn't disappear once I linked the normalize.css doc with my index page. Any reason why?

Brian Lau
Brian Lau
Courses Plus Student 360 Points

You have to add it to the normalize.css file. Search "ul" and add the code in the "list" section.

none of the methods work. I've raped through out all the forums, tried all the methods none of them work