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

Why are my bullet points still showing for my un-ordered list after i liked my css stylesheet?

Here is my line of code where I linked my stylesheet.

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

6 Answers

You need to use markdown to display html code

"Wrap your code with 3 backticks (```) on the line before and after. If you specify the language after the first set of backticks, that'll help us with syntax highlighting."

Im not sure I follow. Nick has not mentioned this in the course, an as far as I can tell, my code is the same as his..

You've not posted your code. To make it appear in the forum you need to add ```html before it and same three ticks after it. Until you post your code it's impossible to see where there's any issues, my response wasn't to your code but because I can't see your code.

Sorry, sir. I misunderstood! Here you are!

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

The code itself looks ok. Is it within the head tags, and also do you actually have the normalize.css file inside the css folder?

  <head>
    <meta charset="utf-8">
    <title>Third Engine Design | If we build it, they will come. </title>
    <link rel="stylesheet" href="css/normalize.css">
  </head>

Yes. It is inside the head, and the normalize.css is inside the css folder.. checked and double checked

Guess just some refreshing issue then :)

Actually.. they are still there.. they just moved down.. ha

Hi Steven,

I don't believe normalize.css gets rid of bullet points. You will need to add:

ul {
    list-style: none;
}

to your stylesheet.

Jeff