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 trialIvan Rickard Liow
1,593 PointsThere are still bullet points on my unordered list AND at the bottom left of each of my photos. How to remove?
I have followed the video completely and entirely and am not sure why bullet points are still appearing.
Ivan Rickard Liow
1,593 PointsSorry for taking forever to reply. I was away for a few months. This worked! Thanks so much.
3 Answers
Angela Riggs
2,539 PointsI had the same thing when I did this section; there's just currently no styling in the normalize.css file to remove the bullet points from the photos (like the code that Ryan Decker wrote in his answer). When you start creating custom CSS, the bullet points on the photos will be removed :)
If the bullet points are still showing on your navigation, double-check the code. If you're using the Workspaces in Treehouse, it should be:
<link rel="stylesheet" href="css/normalize.css">
Jason Arnold
22,110 PointsYou need to apply the {list-style: none;} CSS to those elements.
Isaiah Marin
11,971 PointsI add the same problem as you Ivan. I solved by noticing my normalize.css file was not actually in the css folder that we created. For some reason when I dragged the normalize.css file it didn't go into the folder correctly. So I retried and put the normalize.css file into the css folder. I then reloaded the webpage, and the bullets were no longer visible. Hope this helps!
I.M.
Ryan Decker
3,451 PointsRyan Decker
3,451 PointsHave you tried
ul {list-style:none;}