MyBB.de Forum
Sticky threads werden in normaler Farbe dargestellt - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: MyBB 1.8.x (https://www.mybb.de/forum/forum-87.html)
+--- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-88.html)
+--- Thema: Sticky threads werden in normaler Farbe dargestellt (/thread-38143.html)

Seiten: Seiten: 1 2


RE: Sticky threads werden in normaler Farbe dargestellt - milfhunter - 02.06.2022

Sorry dass ich mich da nochmal rein hängen muss.. Die Wichtigen Threads werden nur Admins und Mods/Smods in Rot angezeigt..

Vll hat ja jemand noch einen Tip.

Danke


RE: Sticky threads werden in normaler Farbe dargestellt - doylecc - 02.06.2022

Füge mal noch in global.css hinzu:
Code:
.forumdisplay_sticky span.subject_old {
    color: #ff0000;
    font-weight: bold;
}

.forumdisplay_sticky span.subject_old a:link {
    font-weight: bold;
    color: #ff0000;
}

.forumdisplay_sticky span.subject_old a:visited {
    font-weight: bold;
    color: #ff0000;
}

.forumdisplay_sticky span.subject_old a:hover, .forumdisplay_sticky span.subject_old a:active {
    font-weight: bold;
    color: #ff0000;
}

.forumdisplay_sticky span.subject_new {
    color: #ff0000;
    font-weight: bold;
}

.forumdisplay_sticky span.subject_new a:link {
    font-weight: bold;
    color: #ff0000;
}

.forumdisplay_sticky span.subject_new a:visited {
    font-weight: bold;
    color: #ff0000;
}

.forumdisplay_sticky span.subject_new a:hover, .forumdisplay_sticky span.subject_new a:active {
    font-weight: bold;
    color: #ff0000;
}



RE: Sticky threads werden in normaler Farbe dargestellt - milfhunter - 02.06.2022

Super, jetzt klappt es. Smile

Vielen Dank!!