Замени
Код:
<vb:if condition="$show['reputation']">
<span class="postbit_reputation" id="repdisplay_{vb:raw post.postid}_{vb:raw post.userid}">
Репутация:
<b>
<vb:if condition="$post[reputation] >= 0">
<font color="green">{vb:raw post.reputation}</font>
<vb:else />
<font color="red">{vb:raw post.reputation}</font>
</vb:if>
</b>
На
Код:
<vb:if condition="$show['reputation']">
<span class="postbit_reputation" id="repdisplay_{vb:raw post.postid}_{vb:raw post.userid}">
<dt>Репутация:</dt>
<b>
<vb:if condition="$post[reputation] >= 0"><dd>
<font color="green">{vb:raw post.reputation}</font></dd>
<vb:else />
<dd><font color="red">{vb:raw post.reputation}</font></dd>
</vb:if>
</b>
Вроде так, если не получится то верните обратно.