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 How to Make a Website Creating HTML Content Add Image Gallery Content

Unordered 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
seal-mask
.a{fill-rule:evenodd;}techdegree
Garret Witzenburg
Front End Web Development Techdegree Student 6,161 Points

Putting

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

Thank you.

lauraniebel
lauraniebel
4,685 Points

You 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!

Thank you for your reply.