PDA

View Full Version : Center Avatar?


TheJekyll
09-21-2007, 08:00 PM
Hi,

Can someone please tell me how to put avatars in the center/middle instead of being on the left?

se_p800
01-02-2008, 10:41 PM
Old thread I know but I also want to know how to do this.

Aken
01-05-2008, 05:39 AM
Assuming you're referring to the postbit_legacy styling, open the posbit_legacy template and find:

<if condition="$show['avatar']">
<div class="smallfont">
&nbsp;<br /><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>
</div>
</if>

Replace with:

<if condition="$show['avatar']">
<div class="smallfont" style="text-align: center;">
&nbsp;<br /><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>
</div>
</if>

se_p800
01-05-2008, 11:24 AM
thanks :)