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

Bullet points do not go away

I'm having a hard time trying to make the bullet points to disappear.

2 Answers

you should try list-style: none;

Here is my code;

      <section>
       <h3> Contact Details</h3>
        <ul class="Contact-info">
         <li class="phone"><a href="tel:309-832-6021">309-832-6021</a></li>             
          <li class="mail"><a href="mailto:roberto-hernandez@yahoo.com">roberta-hernandez@yahoo.com</a></li>
        </ul>
          </section>

/************************** Page: Contact **************************/

.contact-info { list-style: none; padding: 0; margin: 0; font-size: 0.9em; }

I don't see what the problem is.

do list-style: none; on your list items

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