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 trialJared 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!