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 trialJeyhun Guliyev
Courses Plus Student 490 PointsI 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
Treehouse TeacherIf 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!
Jeyhun Guliyev
Courses Plus Student 490 PointsHmm. I see. But in video it did not tell us to do that way.
Lean Rasmussen
11,060 PointsThis 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