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 trialCesar Daniel Gonzalez Estrada
2,546 PointsPhone and mail don't show up. Twitter icon shows up but the rest of them aren't
/*********************************************************** Page Contacto ***********************************************************/
.contacto-info { list-style: none; padding: 0; margin: 0; font-size: 0.9em; }
.contacto-info a { display: block; min-height: 20px; background-repeat: no-repeat; background-size: 20px 20px; padding: 0 0 0 30px; margin: 0 0 10px; }
.contacto-info li.Twitter a { background-image: url('/img/twitter.png') }
.contacto-info li.Telefono a { background-image: url('/img/Telefono.png') }
.contacto-info li.Mail a { background-image: url('/img/mail.png') }
Contacto.html
<ul class="contacto-info"> <li class"Telefono"> <a href="Tel: 81-1916-2937">81-1916-2937</a></li> <li class"Mail"><a href="mailto: cdge.mmind@gmail.com "> cdge.mmind@gmail.com </a></li> <li class="Twitter"><a href="https://twitter.com/intent/tweet?screen_name=CesarDGzz">@CesarDGzz</a></li> </ul> </section>
1 Answer
SK Ng
5,872 PointsThe class attribute in the <li> tags for telephone and mail is missing "=" sign. It should work after u added them. =)
Cesar Daniel Gonzalez Estrada
2,546 PointsI didn't see you post, sorry and Ty!
Cesar Daniel Gonzalez Estrada
2,546 PointsCesar Daniel Gonzalez Estrada
2,546 PointsI was missing "=" It was easy but it took me 2 hours... Thank you, I made it by myself!
Regards.