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 trialRazvan Sighinas
2,018 PointsI can't make the bullet points go away
<h3>Contact details</h3>
<ul class="contact info">
<li class="phone"><a href="tel:0721-242424">0721-242424</a></li>
<li class="mail"><a href="mailto:1234@yahoo.com">1234@yahoo.com</a></li>
<li class="Facebook"><a href="http://facebook.com/intent/facebook?screen_name=sighinas.razvan">@sighinas.razvan</a></li>
</ul>
And the css:
.Contact-info {
list-style: none;
padding: 0;
margin: 0;
font-size: 0.9em;
What is the problem?
Razvan Sighinas
2,018 Pointsyes
Tony Nguyen
24,934 PointsCan we see your HTML? Just so that we can make sure that you are selecting the correct element?
Razvan Sighinas
2,018 Points<h3>Contact details</h3> <ul class="contact info"> <li class="phone"><a href="tel:0721-242424">0721-242424</a></li> <li class="mail"><a href="mailto:1234@yahoo.com">1234@yahoo.com</a></li> <li class="Facebook"><a href="http://facebook.com/intent/facebook?screen_name=sighinas.razvan">@sighinas.razvan</a></li> </ul>
jennifer ray
7,875 Pointshave you got a capital C in contact-info in HTML as in your css?
Tony Nguyen
24,934 PointsNevermind, I edited your question to show the HTML.
Razvan Sighinas
2,018 Pointsyes I have a capital C in both
2 Answers
Tony Nguyen
24,934 PointsThe reason why it's not working is because you're not selecting the correct element.
Please remember that classes and id's should not have any spaces in between them. You should add a dash like this:
<ul class="contact-list">
</ul>
And then select your class like this, make sure that nothing is capitalized too:
.contact-list {
list-style: none;
}
Razvan Sighinas
2,018 PointsThank you
Bryan Fondrick
15,407 PointsI had the same problem, but mine was that the </ul> was not at the end of the list.
jennifer ray
7,875 Pointsjennifer ray
7,875 PointsDid you add the end curly brace? }