- Joined
- Jan 26, 2008
- Messages
- 17,835
A simple CSS edit, I noticed this while browsing threads and noticing that staff members posts had the "staff" class appended to the blockquote attribute.
Go to xenforo.css and add this;
that will add a red background to staff posts like this;
or, if you're feeling adventurous, you could add this;
which would do this;
Of course the only limit is the limit of your CSS knowledge.
For example, here is what I've done with mine;
Go to xenforo.css and add this;
Code:
.staff
{
border:10px solid #CD0000;
background:#CD0000;
}

or, if you're feeling adventurous, you could add this;
Code:
.staff .messageUserBlock
{
border:10px solid #CD0000;
background:#CD0000;
}
which would do this;

Of course the only limit is the limit of your CSS knowledge.
For example, here is what I've done with mine;
