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 trialapril
690 PointsUnordered List Is there a way to remove the bullets to the left of each photo?
As you explained this is an unordered/bulletted list vs and ordered list/numbered. What coding is needed to remove these bullets?
2 Answers
Garret Witzenburg
Front End Web Development Techdegree Student 6,161 PointsPutting
<body> ul { list-style: none; } </body>
in your CSS code should solve the problem. You will encounter using CSS files later in that course, if you haven't used them yet.
lauraniebel
4,685 PointsYou can insert list-style: none in your CSS to remove bullet points:
nav ul {
list-style: none;
padding: 0;
}
You can also remove the padding, so there is now white space where the bullet point used to be.
Hope this helps!
april
690 PointsThank you for your reply.
april
690 Pointsapril
690 PointsThank you.