I'm sorry, one more thing, is this the postbit or postbit legacy you're trying to do this in?
--------------- Added 31 May 2009 at 20:57 ---------------
Either way, it should be fairly similar. Anyway, in postbit/postbit_legacy, find and delete:
HTML Code:
<if condition="$post['rank']"><div class="smallfont">$post[rank]</div></if>
And replace:
HTML Code:
<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>
With:
HTML Code:
<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><if condition="$post['rank']"><div class="smallfont">$post[rank]</div></if></td></if>