MyBB Community Forums

Full Version: How do I change these Colors?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
[Image: vKNL2.png]


How would I change the color of unapproved threads, and the sections. I want to make them a type of blue.
For the unapproved thread colour you can edit the below in your global.css

.trow_shaded {
    background: none repeat scroll 0 0 #FFDDE0;
    color: #000000;
}

You'll need to change FFDDE0 to a different HEX colour code.


Depending on which other bits you want to edit this images might be of use.

[Image: forum.gif]

All colour changes will be done by editing the global css
Thank you!

How would I change color of Important threads and new threads. Right now the bg is white for it

[Image: VB94x.png]

Also how do I change color of Stickied threads (The threads under important threads)

FORUM URL: http://imtiax.net/forumdisplay.php?fid=2
You can edit the .trow_sep css in the global css

.trow_sep {
    background: none repeat scroll 0 0 #999999;
    color: #000000;
    font-size: 12px;
    font-weight: bold;
}


For the background colour edit the 999999 (or whatever numbers are there)

background: none repeat scroll 0 0 #999999;


And for the actual text colour you can edit

color: #000000;
Okay, but what about changing BG color for Stickied threads?
Not possible by default from what I know, the colours are taken from trow1 and trow2 there's not a seperate one for stickied threads. Maybe there's a plugin or some sort of template mod you can do.
forumdisplay_sticky is class for sticky thread cell.
In Global.css there is no forumdisplay_sticky

At least not in mine.
Here ya go this should help http://yaldaram.com/thread-2681.html, and add it to your css.
Thank you so much, it worked
Pages: 1 2