ok - yes I'm an idiot noob who only occasionally gets to manage Vbulletin
I'm looking to implement this in Vb 4.07 but not sure where to add the code
in order to highlight Awaiting Moderation posts in bold
So starting from the admincp
Styles & Templates > Style Manager > vB4 Default Style > Edit Templates > Go
Scroll down to Postbit Templates > doubleclick "postbit"
which will bring up Customize Templateostbit
Am I close? and if so or if not ... where do I add the code?
You're close but you're using vBulletin 4.x so it's a little different.
In the template look for the line:
Code:
{vb:raw post.message}
and right above or below that line add these new lines:
Code:
<vb:if condition="$show['moderated']">
<br />
<span style="color:red;"><strong>This post must be moderated!!!</strong></span>
<br />
</vb:if>
If you put it above the message will show up on top of the post, if you put it below it will show up under the post message, right above the signature, if any.