Seite 1 von 1

webring bei jeden browser richtig angezeigt

Verfasst: 30.05.2006 01:06
von Luckyze
hi
miccom hat geschrieben:btw: der webring-code fehlt, darum ist mir deine seite auch nochmals aufgefallen
wer auch probleme hat mit webring-code beim ie oder opera,obwohl firefox diesen code richtig anzeigt, und hat auch so ein ähnliches phpbb plus hat wie ich, habe ich den code so geändert.

so wird webring bei jeden browser richtig angezeigt.

alter code =>

Code: Alles auswählen

a.ring_mono,
a.ring_mono:hover,
a.ring_mono:active,
a.ring_mono:visited,
.ring_mono {
    font-family:Verdana, Arial, sans-serif;
    font-size: 0.8em;
    font-weight: bold;
    text-decoration: none;
}
a.ring_text,
a.ring_text:hover,
a.ring_text:active,
a.ring_text:visited,
.ring_text {
    font-family:Verdana, Arial, sans-serif;
    font-size: 0.8em;
    font-weight: bold;
}
statt der 0,8em mache man 1em.

neuer code =>

Code: Alles auswählen

a.ring_mono,
a.ring_mono:hover,
a.ring_mono:active,
a.ring_mono:visited,
.ring_mono {
    font-family:Verdana, Arial, sans-serif;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
}
a.ring_text,
a.ring_text:hover,
a.ring_text:active,
a.ring_text:visited,
.ring_text {
    font-family:Verdana, Arial, sans-serif;
    font-size:1em;
    font-weight: bold;
}
greetz Luckyze