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 Adding Pages to a Website Add Iconography

I can't make my ul list style work

I put everything properly as in video. but my ul's dots are still visible https://w.trhou.se/n0ijia8wda

3 Answers

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

If I select the list items inside the contact-info it removes the bullets. Take a look:

.contact-info {
  list-style: none;
  padding:0;
  margin:0;
}

.contact-info li {
    list-style: none;
}

Make sure to save and refresh the page, of course!

Hmm. I see. But in video it did not tell us to do that way.

Lean Rasmussen
Lean Rasmussen
11,060 Points

This is because the dots you see on the webpage are connected to the <li> element, and not the <ul> element. see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/li