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 Add Iconography

main.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
Lin Lu
29,171 Points

Now you have no list items inside the unordered list. The ul openning tag and ul closing tag should surround the list items.

That did it. Thanks!

Mike NZ
Mike NZ
2,415 Points

Thanks! This helped me, as well.

Lin Lu
Lin Lu
29,171 Points

Glad it helped. :)

JOSE REINOSO
JOSE REINOSO
2,242 Points

This was my mistake too. Thank you!