MyBB.de Forum
Css Anweisung Thread Prefix? - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Theme-Diskussionen (https://www.mybb.de/forum/forum-84.html)
+--- Thema: Css Anweisung Thread Prefix? (/thread-25323.html)



Css Anweisung Thread Prefix? - sonic1978 - 03.04.2012

Hallo würde gerne das Thread Prefix etwas abändern so wie auf dem Screen.
Welche css anweisung muss ich dafür nehmen und in die global.css schreiben das das funktoniert?

hier meine css


Code:
was kommt hier rein? {
    background-color: #CF0000;
    background-position: 0 0;
    border-color: #590000;
    border-radius: 3px 3px 3px 3px;
    border-style: solid;
    border-width: 1px;
    box-shadow: 1px 1px 0 0 #D57979 inset;
    color: #FFFFFF;
    margin-right: 0;
    padding: 3px 10px;
    text-shadow: 0 -1px 0 #000000;
}



RE: Css Anweisung Thread Prefix? - Jockl - 03.04.2012

Setze diese Zeile in die global.css ein
Code:
.myTest {
    background-color: #CF0000;
    background-position: 0 0;
    border-color: #590000;
    border-radius: 3px 3px 3px 3px;
    border-style: solid;
    border-width: 1px;
    box-shadow: 1px 1px 0 0 #D57979 inset;
    color: #FFFFFF;
    margin-right: 0;
    padding: 3px 10px;
    text-shadow: 0 -1px 0 #000000;
}

Dann erstelle einen Präfix mit dem Namen Subscriber und setze bei Anzeigen-Stil die Zeile
Code:
<span class="myTest">Subscriber</span>
ein


RE: Css Anweisung Thread Prefix? - sonic1978 - 03.04.2012

Danke Jockl funzt prima