For the thread icon, try doing..
if ($thread['postuserid'] == 1 || $thread[lastposter] == 1) {
$thread[threadiconpath] = "images/misc/DEVICON.PNG";
}
As for the other mod, find the plugin colorname
And replace all with:
if($lastpostinfo['lastposter'] == YOURUSERNAME) {
$lastpostinfo['lastposter'] = '<span style="color:#8B0000;">".$lastpostinfo['lastposter']."</span>';
}
|