It works, but everyone gets that color. :P
PHP Code:
<!-- message -->
<div>
<if condition="$post[usergroupid]==6">
<div style="color: #CC0000">
</if>
$post[message]
<if condition="$post[usergroupid]==6">
</div>
</if>
</div>
<!-- / message -->
This worked like a charm, it lacked a second = I also changed the font tag to style so that it's XHTML compatible.
If you want to exclude forums use
PHP Code:
<!-- message -->
<div>
<if condition="$post[usergroupid]==6 AND $forum[forumid]!=XX">
<div style="color: #CC0000">
</if>
$post[message]
<if condition="$post[usergroupid]==6 AND $forum[forumid]!=XX">
</div>
</if>
</div>
<!-- / message -->
https://vborg.vbsupport.ru/showthrea...189#post613189