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

Maarten Scholz
Maarten Scholz
1,644 Points

Result of the exercise =/= result of the video. My webpage still has bullet points after adding normalize.css?

So I've done everything step for step but when Nick shows the result the bullet points of the page are gone but they are still present in mine. Even when I copy the exact code he uses from the file that is added it still won't delete the bullet points. Could it be that there's something wrong in normalize.css?

Thanks

2 Answers

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hey Maarten,

No, there's nothing wrong. This is an older video, and Normalize.css used to remove bullet points from unordered list, but the newer releases of Normalize NO longer remove them. This will need to be done inside of your custom CSS file. The rule needed will be list-style: none;. You can read more on list-style in the MDN docs.

Keep Coding! :) :dizzy:

Maarten Scholz
Maarten Scholz
1,644 Points

Hey Jason

Thanks a lot, I couldn't figure it out on my own. Have a good day.

All the best