Topic: HOW TO: Change moderator post color.
**elbekko figured out this wonderful solution
This was originally a question, and elbekko solved it. Because so many ppl were interested in how to do this, I decided to explain how to.
First of all, you need to change the color for admin posts if you haven't already. Learn this here. Now edit viewtopic.php . Around line 328, find
<?php echo '<div class="'.($cur_post['group_id'] == PUN_ADMIN ? 'adminmsg' : 'postmsg').'">'; ?>
and replace with
<?php echo '<div class="'.($cur_post['group_id'] == PUN_ADMIN ? 'adminmsg' : (($cur_post['group_id'] == PUN_MOD) ? 'adminmsg' : 'postmsg')).'">'; ?>
. This will change the color of moderator's posts to the color of admin post too.