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

treeyon 94
treeyon 94
14,715 Points

No 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

Hallo 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
treeyon 94
14,715 Points

Wow! Vielen Dank für die schnelle Antwort. Es hat geklappt, danke.

Gerne. Deswegen sind wir da. Meistens beantworte ich gleich wenn ich ein "Ask Question" Flag bekomme :)

Viel Spaß noch :)