MyBB Community Forums

Full Version: How to Change Color Of Sticky Threads?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello mates!
I wanna know how to change color of the titles of sticky threads?
You'll need a plugin for this.
You could probably do it with some core file edits but plugins are easier to use if you can find one.
There is a class of "forumdisplay_sticky" for the table row and "subject_[new/old]" for the title so you could probably get what you want with something like this:
.forumdisplay_sticky a[class*=subject] {
	code here;
}
I'll try what Ferron said, but can you people tell me the plugin's name for this work?
^ it is not a plug-in ; can be achieved thru customized css

in global.css at the bottom add below code & refresh (CTRL + F5) your sticky threads forum page

.forumdisplay_sticky a[class*=subject] {
    color : #ff0000 !important;
}

( #ff0000 is for red color )