Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Alex Sacco
259 Pointsbullets
Another question! After including the link to normalize.css, the bullets in the site I'm creating were supposed to be removed, but they weren't. Something I might be missing?
3 Answers

Ricardo Hill-Henry
38,442 PointsYour normalize include should look something like:
<link rel="stylesheet" type="text/css" href="normalize.css"/>
Now, I don't believe normalize gets rid of bullets on lists anywhere; because that simply wouldn't make sense. Normalize has a style that gets rid of bullets specifically for an <ul> or <ol> inside of a containing <nav> element.
nav ul, nav ol {
list-style: none;
list-style-image: none;
}

Jonathan Grieve
Treehouse Moderator 90,956 PointsMake sure your link to the normalise.css file is correct.
it's list-style: none; as well just to be sure that's right too. No code so this is guesswork but all worth checking!

Keith Monaghan
9,494 PointsDouble check that normalize.css was properly linked. You can view source on your page and try to access that style sheet by clicking on it's link.
If normalize.css is linked above your style.css (which it should be) make sure nothing in your stylesheet resets the list-style property back to default (circle, I think).
James Barnett
39,199 PointsJames Barnett
39,199 Points>
Normalize has a style that gets rid of bullets specifically for an<ul>
or<ol>
inside of a containing<nav>
element.That rule was removed starting in the version 2 branch according to the changelog.