https://vborg.vbsupport.ru/showthread.php?t=203850
Well this is a start. You could take their code, and change their "Replace with" code to the following:
Code:
<if condition="is_member_of($post, #)">
<td width="175" style="background-image:url(url to image);border: $stylevar[cellspacing]px solid $stylevar [tborder_bgcolor]; border-top: 0px; border-bottom: 0px id="td_post_$post[postid]">
<else />
<td class="alt2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px"></if>
Create the usergroups you want, for example Bostons (usergroup ID of 7) and NY (usergroup ID of 8).
Change
# to the usergroup ID of each usergroup, in my example 7 for Bostons, 8 for NY.
Example code:
Code:
<if condition="is_member_of($post, 7)">
<td width="175" style="background-image:url('images/teams/boston.gif');
border: $stylevar[cellspacing]px solid $stylevar [tborder_bgcolor]; border-top: 0px; border-bottom: 0px id="td_post_$post[postid]">
<else />
<if condition="is_member_of($post, 8)">
<td class="postbit" width="175" style="background-image:url('images/teams/ny.gif');
border: $stylevar[cellspacing]px solid $stylevar [tborder_bgcolor]; border-top: 0px; border-bottom: 0px id="td_post_$post[postid]">
<else />
<td class="alt2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px">
</if>
</if>
Do you get what I mean?
You may be looking at a number of if statements, so if you're alright with that, than sweet <3