Telegrafico Footer Icons hinzufügen

  • Das geht mit einfachem HTML, innerhalb des a-Tags fügst du ein Bild ein:

    HTML
    <img src="Pfad zum Bild" />

    Das hier fügt zum Beispiel ein kleines Icon vom Forum ein:

    HTML
    <img src="{icon}threadS.png{/icon}" />
  • so sieht das bei mir aktuell ohne icons aus.

    HTML
    <div class="additionalFooterContent">
    
    
    <div class="footerContent1">
    <h3 class="subHeadline">TS3-Voice</h3>
    <p><a href="http://ts3-voice.eu/index.php?page=LegalNotice">Impressum</a></p>
    <p><a href="http://ts3-voice.eu/index.php?page=Rules">Nutzungsbestimmungen</a></p>
    <p><a href="http://ts3-voice.eu/index.php?form=Contact">Kontakt</a></p>
    <p><a href="http://ts3-voice.eu/index.php?page=Help">Hilfe</a></p>
    </div>

    jetzt will ich z.b. vor Impressum ein Icon hin haben.

    HTML
    <div class="additionalFooterContent">
    
    
    <div class="footerContent1">
    <h3 class="subHeadline">TS3-Voice</h3>
    <p><a href="http://ts3-voice.eu/index.php?page=LegalNotice"><img src="http://ts3-voice.eu/wcf/icon/legalNoticeS.png" /> Impressum</a></p>
    <p><a href="http://ts3-voice.eu/index.php?page=Rules">Nutzungsbestimmungen</a></p>
    <p><a href="http://ts3-voice.eu/index.php?form=Contact">Kontakt</a></p>
    <p><a href="http://ts3-voice.eu/index.php?page=Help">Hilfe</a></p>
    </div>

    es wird jedoch nichts angezeigt :(

  • Kurz frage, hasst du die TPL in der richtigen TPL Gruppe geändert?

    Gruß
    Jonas

    Hallo – Hello – Bonjour – Merhaba – Hei - Γεια σας – Hej – مرحبا – Halo – Olá – Hallå – здраво - ¡Hola
    #welcome #refugeeswelcome #statement

  • Füg mal:

    CSS
    .additionalFooterContent img {
    display:inline !important;
    }

    dem Stil hinzu. Dann sollte es angezeigt werden.