Here's just a small addon if you wish to have the sticky prefix with a colored/bold/italic thread title...
In forumdisplay.php find
Code:
if ($thread[sticky] == 1) {
$thread[typeprefix]=$stickythreadprefix.$thread[typeprefix];
}
replace it with...
Code:
if ($thread[sticky] == 1) {
$thread[typeprefix]=$thread[typeprefix].$stickythreadprefix;
$thread[title] = "<font color=red>$thread[title]</font>";
}
Just in case you were wondering how to do it. You can of course put anything instead of the <font color=red>
remember to use \" for quotes!