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.
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
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.
Thank you so much, it worked