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

CSS How to Make a Website Adding Pages to a Website Build the Contact Page

which css header should i use to delete the points before list items?

<section> <ul class = "contact-info"> <li class = "phone"><a href = "tel:333 43 43">333 43 22</a></li> <li class = "mail"><a href = "mailto:example@gmail.com"> example@gmail.com</a></li>

</ul>

</section>

I want to delete the default points before the items.

i uses this but it did not work

section ul li{ text-decoration:none; }

2 Answers

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,253 Points

Hi Mirtac.

I think you mean you want to delete the bullet points from the unordered list.

For this you need to use a different CSS property.

Try using the list-style property with the value of none.

section ul li{ list-style: none; }

thank you jonathan