Great mod, had some hassle to get it working right with vB 4.0.3
I have figured out a fix for the border not being around the avatar;
original code
Code:
<vb:if condition="$show['avatar']">
<div class="eti_postbit_2">
<a class="postuseravatar" href="{vb:link member, {vb:raw post}}" title="{vb:rawphrase {vb:raw post['onlinestatusphrase']}, {vb:raw post.username}}">
<img src="{vb:raw post.avatarurl}" alt="{vb:rawphrase xs_avatar, {vb:raw post.username}}" />
</a></div>
</vb:if>
and mine
Code:
<vb:if condition="$show['avatar']">
<div class="eti_postbit">
<div class="postuseravatar" href="{vb:link member, {vb:raw post}}" title="{vb:rawphrase {vb:raw post['onlinestatusphrase']}, {vb:raw post.username}}">
<img src="{vb:raw post.avatarurl}" alt="{vb:rawphrase xs_avatar, {vb:raw post.username}}" />
</a></div></div>
</vb:if>
The culprit was,
Code:
<div class="eti_postbit_2">
<a class
changed to
<div class="eti_postbit">
<div class
This fixed border around avatar, however I still have a border section with nothing in it that is very thin under the avatar.
Not sure if that's related to this or not.
Also does anyone know how to get a border around vmoods mod?