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

CSS How to Make a Website CSS: Cascading Style Sheets What is CSS?

bullets

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

Your 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;
}
James Barnett
James 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.

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,252 Points

Make 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
Keith Monaghan
9,494 Points

Double 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).