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 trialCarlos Belnap
4,564 PointsIncluded normalize.css in head after title, but still have bullet points, even in first picture. What am I doing wrong?
<head>
<meta charset="utf-8">
<title>Brother Gum | Secular Pastor</title>
<link rel="stylesheet" href="css/normalize.css">
</head>
2 Answers
Kevin Korte
28,149 PointsNormalize does not remove bullet points from list items. It just smooths out some of the browser inconsistencies. I assume your images are in a list, and so you would want to apply list-style: none
to your list in your CSS file.
Jim Withington
12,025 PointsJason Anello It's good to know that my images might have bullet points for some reason (see screenshot below)! I was about to try and troubleshoot why that might be happening!
Jason Anello
Courses Plus Student 94,610 PointsJason Anello
Courses Plus Student 94,610 PointsHi Kevin,
The older version of normalize used in this project does remove bullets from lists within a
nav
element.Hi Carlos,
If the bullets in your navigation have been removed then you're right on track. You should still have bullets on your gallery items and you'll remove it in a later video with the css that Kevin has shown.
Carlos Belnap
4,564 PointsCarlos Belnap
4,564 PointsOh, ok. Thanks guys!