PDA

View Full Version : How to line break and border around avatar?


Drocr
11-17-2009, 08:41 PM
https://vborg.vbsupport.ru/external/2009/11/21.jpg


How can I create a line break like that in my postibt so it just indents a line?

Thelonius Beck
11-20-2009, 11:15 PM
The line in your postbit is just a series of underscores followed by a line break.
_____________<br/>You can't wrap THAT around your avatars.

But, if you search your postbit and/or postbit_legacy template for this code;


<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>
And replace it with something like this;


<if condition="$show['avatar']">
<div class="smallfont">
<div class="tborder"">
&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>
</div>
</if>
You may get something like what your after.

You'll just have to adjust the color of .tborder so that it does the whole "indent" thing, or create a new class and use it instead if you don't want to alter .tborder.


Hope this helps.