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


Sticky threads werden in normaler Farbe dargestellt - milfhunter - 22.01.2022

Hallo @all, 

bei mir wird (vermutlich seit update von 27 auf 29) die Sticky Threads in normaler Farbe dargestellt. 

Im anhand weitere Details. 

Grüße
Hunter


RE: Sticky threads werden in normaler Farbe dargestellt - Kader - 22.01.2022

und was sollen die Bilder sagen ?


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

Dass Sticky fehlt meiner Meinung nach. Wenn sie mir was sagen würden dann hätte ich kein Thread abgesetzt.

Hunter


RE: Sticky threads werden in normaler Farbe dargestellt - Kader - 22.01.2022

eventuell hilft das hier ? https://www.mybb.de/forum/thread-35749.html


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

Die Farben in der Global passen..

Code:
.forumdisplay_sticky .sticky {
    color: #ff0000;
    font-weight: bold;
}

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

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

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



RE: Sticky threads werden in normaler Farbe dargestellt - Kader - 22.01.2022

hast du auch alles dort gelesen ?
Lösung


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

Nimm mal .sticky raus, wenn du so eine Klasse nicht verwendest:

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

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

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

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



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

Wenn ich das so einfüge, sieht es schon wieder besser aus. Allerdings wird quasi die ganze Zeile Rot dargestellt.

Also das Thema, Der Username des Erstellers, die Zeile der Antworten, die Ansichten und ... Letzeter Beitrag : Username.

Mir ginge es nur drum dass das Thema wieder in Rot dargestellt wird. Der Rest soll in der Farbe bleiben wie die Normalen Threads auch.

Grüße
Hunter


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

Also nur der Themen-Titel?
Versuche es mal damit:
Code:
.forumdisplay_sticky span.subject_editable {
    color: #ff0000;
    font-weight: bold;
}

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

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

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



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

Wunderbar! Es Rockt.

Danke dir Smile