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

HTML How to Make a Website Adding Pages to a Website Add Iconography

Priscilla Blanco
Priscilla Blanco
691 Points

Background images are not showing up.

Hi,

I think I'm doing everything as Nick is showing me, but I'm still not seeing any background images for the contact-info list items. I think the path is correct. Not sure what I'm doing wrong.

Please help me.

https://w.trhou.se/rs93dipw7n

2 Answers

Carl-Kaspar Puhm
seal-mask
.a{fill-rule:evenodd;}techdegree
Carl-Kaspar Puhm
Front End Web Development Techdegree Student 8,692 Points

You are missing the equality signs on the list item classes

<ul class="contact-info">
           <li class "phone"><a href="tel:8854-1597">8854-1597</a></li>
           <li class "mail"><a href="mailto:pri@project.com">pri@project.com</a></li>
           <li class "twitter"><a href="http://twitter.com/intent/tweet?screen_name=Priblanco">@Priblanco</a></li>
</ul>
Priscilla Blanco
Priscilla Blanco
691 Points

Thank you so much guys it is working now! :)

Hi Priscilla,

Try putting a space before your first curly brace. That whole section of code is missing a space before your curly braces.

Hope this helps!

Priscilla Blanco
Priscilla Blanco
691 Points

Thank you so much guys it is working now! :)