[TYPO3-german] Icons vor Links

Christoph Dahlen christoph at dahlen.org
Fri May 25 13:15:43 CEST 2007


Christian Lerrahn (Cerebrum) schrieb:
> Hallo,
> da ich mich wohl nicht ausreichend klar ausgedrueckt habe, hier noch
> ein bisschen nachgereicht...
> 
> Die Idee ist nicht, EIN Icon vor ALLE Links zu stellen, sondern das
> Icon auf den Link abzustimmen, wie das z.B. der Dateimanager im BE tut.

Das war mir schon klar, dafür kann man das class-Attribut des
entsprechenden <a> Elementes ja senden.

<a class="internal" href="./anywhere.html">go</a>
<a class="external" href="http://www.example.com/">go</a>

<style type="text/css">
 a.internal:before {
  content: url(./img/internal_link.png);
 }
 a.external:before {
  content: url(./img/external_link.png);
 }
</style>

Gruß,

Christoph


More information about the TYPO3-german mailing list