Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Jared Carr
953 Pointsmain.css not affecting contact.html
css isn't affecting my contact page
<section> <h3>Contact Details</h3> <ul class="contact-info"></ul> <li class="phone"><a href="tel:123-4567">123-4567</a></li> <li classs="mail"><a href="mailto:example@example.com">example@example.com</a></li> <li class="twitter"><a href="http://twitter.com/intent/tweet?screen_name=example">@example</a></li> </section>
.contact-info{
list-style:none;
padding:0;
margin:0;
font-size:0.9em;
}
.contact-info li.phone a { background-image:url('../img/phone.png'); }
.contact-info li.mail a { background-image:url('../img/mail.png'); }
.contact-info li.twitter a { background-image:url('../img/twitter.png'); }
1 Answer

Lin Lu
29,171 PointsNow you have no list items inside the unordered list. The ul openning tag and ul closing tag should surround the list items.
Jared Carr
953 PointsJared Carr
953 PointsThat did it. Thanks!
Mike NZ
2,415 PointsMike NZ
2,415 PointsThanks! This helped me, as well.
Lin Lu
29,171 PointsLin Lu
29,171 PointsGlad it helped. :)
JOSE REINOSO
2,242 PointsJOSE REINOSO
2,242 PointsThis was my mistake too. Thank you!