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

Ashton Holgate
Ashton Holgate
6,021 Points

I've added normalize.css to my HTML file but 'list-style-image: none;' doesn't seem to have been implemented

Strangely enough I have added 'normalize.css' to my html file, as described in the video, but my images still have bullet points. This is not the case for normal bullet points which have been removed. I have checked normalize and it has the following. css nav ul, nav ol { list-style: none; list-style-image: none; }

I am correctly linking to the css file in my html file using the code:

      ```html
      <link rel="stylesheet" href="css/normalize.css">
      ```

Not sure what is going on. Can anyone help?

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hey Ashton,

Seeing the bullet points with normalize.css is normal. As of version 3 the removal of bullet points in ordered and unordered lists is no longer part of the file.

What you have above targets only the order/unordered lists that are children of the <nav> element, so no, those won't remove the bullet points from your pictures. To remove those, you now have to manually add the rules to your own CSS file.

For this course, you could add

ul, ol {
  list-style: none;
}

Keep Coding! :dizzy:

Ashton Holgate
Ashton Holgate
6,021 Points

Hi Jason,

Thank you very much for the quick response, immediate fix, and well wishes on coding!

Kind regards,

Ashton