you could cut out editing the templates by doing this:
Change this:
PHP Code:
if ($userlastvisit<$forum['lastpost']) {
$forum['onoff']='on';
} else {
$forum['onoff']='off';
}
}
To this:
PHP Code:
if ($userlastvisit<$forum['lastpost']) {
$forum['onoff']='on';
$forum[title] = "<font color=\"{newpostscolor}\"><i>$forum[title]</i></font>";
} else {
$forum['onoff']='off';
}
}