I got it! I used this code here:
Code:
<if condition="$forum[forumid] == 3">
<if condition="$show['avatar']"><td class="alt2"><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a></td></if>
</if>
Thanks for your help! I wouldn't have thought to change the $condition part!
[EDIT] And in case anyone else needs it... To do it in multiple forums! These are both in the [postbit] template!
Code:
<if condition="in_array($forum[forumid], array(x,x,x))">
<if condition="$show['avatar']"><td class="alt2"><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a></td></if>
</if>