22.07.2017, 12:55
Wer anstatt der Sprite Icons eigene Bevorzugt hier die Anleitung.
hier gefunden
öffne global.css bzw. CSS von deinem Template
suche
ersetze es hiermit, Bilder und Größe musst du anpassen
am fuß des Forums siehst du welche Icons wofür erscheinen.
hier gefunden
öffne global.css bzw. CSS von deinem Template
suche
Code:
.forum_status {
height: 30px;
width: 30px;
background: url(images/forum_icon_sprite.png) no-repeat 0 0;
display: inline-block;
}
.forum_on {
background-position: 0 0;
}
.forum_off {
background-position: 0 -30px;
}
.forum_offlock {
background-position: 0 -60px;
}
.forum_offlink {
background-position: 0 -90px;
}
ersetze es hiermit, Bilder und Größe musst du anpassen
Code:
.forum_status {
height: 48px;
width: 48px;
display: inline-block;
}
.forum_on {
height: 48px;
width: 48px;
background-image: url(images/book.png);
}
.forum_off {
height: 48px;
width: 48px;
background-image: url(images/booko.png);
}
.forum_offlock {
height: 48px;
width: 48px;
background-image: url(images/off.png);
}
.forum_offlink {
height: 48px;
width: 48px;
background-image: url(images/umleitung.png);
}
am fuß des Forums siehst du welche Icons wofür erscheinen.