Quote:
Originally Posted by Lynne
|
I had searched before but i didnt find it.
For future reference -
Find in postbit_Legacy -
Code:
<!-- message -->
<div id="post_message_$post[postid]">
$ad_location[ad_showthread_firstpost_start]
$post[message]
</div>
<!-- / message -->
Replace This -
Code:
<div id="post_message_$post[postid]">
With this -
PHP Code:
<if condition="is_member_of($post, 6)">
<div id="post_message_$post[postid]" style="color: red; font-weight: bold;">
<else />
<if condition="is_member_of($post, 7)">
<div id="post_message_$post[postid]" style="color: orange;">
<else />
<div id="post_message_$post[postid]" style="color: black;">
</if>
</if>
You can change the number to any group you want And change the colors and font-weight to whatever you want unless you really want bold red text for your administrators and orange text for your moderators!
Thanks Lynne for the help!