Quote:
Originally Posted by Iain M
How many users are we talking about? You could end up with a lot of code... but a quick way is just add an else if for each user....
Code:
<vb:if condition="$shout['s_user'] == X">
<span style="CUSTOM STYLING">{vb:raw shout.musername}</span>
<vb:elseif condition="$shout['s_user'] == X" />
<span style="CUSTOM STYLING">{vb:raw shout.musername}</span>
<vb:else />
{vb:raw shout.musername}
</vb:if>
|
That's what I was looking for! Thanks.:up: