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

Fix regarding the often asked question about the bullet points on lists after adding normailze.css to your project.

In the video when he saves an views after adding the link attribute for the style sheet you will notice that the bullet points were removed from both the nav and section lists.

When I did this the bullet points for the section were still there. I fixed it easy enough by copy/pasting the nav ul section at line 316 of normailze.css and changing nav to section so that it looks like this.

nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
}
section ul,
section ol {
    list-style: none;
    list-style-image: none;
}

I am just putting this here in case someone else has a similar issue and can't figure out how to fix it.

thanks, easy fix!

3 Answers

awesome! thank you!

Thanks so much! I was going crazy!