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 trialtreeyon 94
14,715 PointsNo icon shown
Hi, after reading all answears i still got the problem. It won't show the icons. Here is my quellcode: <section> <h3> Generelle Information </h3> <p> Bei Fragen können Sie sich gerne melden </p> <p> Bitte nutzen sie nur den Telefonkontakt. Andernfalls sind wir auch über E-Mail erreichbar. </p> </section>
<section>
<h3>Kontakt Details</h3>
<ul class="contact-info">
<li class="phone"><a href="tel:0000">00003</a></li>
<li class="mail"><a href="mailto:yannick.schladt@web.de">yannick.schladt@web.de</a></li>
<li class="twitter"><a href="http://twitter.com/intent/tweet?scree_name=yannickschladt">@yannickschladt</a></li>
</ul>
</section>
main.css .contact-info{ list-style: none; padding: 0; margin: 0; font-size: 0.9em; }
.contact-info a { display: block; min-height: 20px; background-repeat: no-repeat; background-size: 20px 20px; padding: 0 0 0 30px; margin: 0 0 10px; }
.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'); }
2 Answers
Nejc Vukovic
Full Stack JavaScript Techdegree Graduate 51,574 PointsHallo Yanick.
Ich hab dein Code durchgeschaut und kann ich dich nur des vorschlagen: Ich vermute das den HTML Datei ist auf root von den Struktur und dein Bilder sind in einen Pfad img.
Und das Problem löst du so, das du denn " ../ " weg nimmst. Beim alle "background-image" Deklarationen.
z.B. :
.contact-info li.phone a{ background-image: url('img/phone.png');
I hoffe dass, das wird dich helfen.
MfG.
nVVEBd
treeyon 94
14,715 PointsWow! Vielen Dank für die schnelle Antwort. Es hat geklappt, danke.
Nejc Vukovic
Full Stack JavaScript Techdegree Graduate 51,574 PointsGerne. Deswegen sind wir da. Meistens beantworte ich gleich wenn ich ein "Ask Question" Flag bekomme :)
Viel Spaß noch :)