MyBB.de Forum
Individuelles Forum Icon - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Tutorials (https://www.mybb.de/forum/forum-86.html)
+--- Thema: Individuelles Forum Icon (/thread-34847.html)



Individuelles Forum Icon - Erkan - 22.07.2017

Wer anstatt der Sprite Icons eigene Bevorzugt hier die Anleitung.
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.