PDA

View Full Version : Moderating Posting


mark350
12-01-2010, 12:17 AM
Is there a way to make it that when a moderator makes a post, the background color of the post is different... also, can this option be turned on/off i.e. it only has a different color when the moderator is making an "official post" - otherwise, during "normal discussions," it looks the same.

If not, is there any suggestions on a way to make moderator posts stand out?

Thank you.

Lynne
12-01-2010, 01:11 AM
There is no option to do this. If you want to do it for all the moderator posts, then you can put a condition in to add a class to the div if the post is by a mod and then add a background color to the class in the additional.css template.

<vb:if condition="is_member_of($post, 5,6,7)">modclass<vb:if>
and
.modclass {background: pink;}

(This has actually been covered a few times before.)