SuperFly |
06-10-2006 10:00 PM |
Change Opacity of Avatar
Change the opacity level of your users avatars
In postbit or Postibt legacy find
Code:
<if condition="$show['avatar']">
<div class="smallfont">
<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
</div>
</if>
Replace with
Code:
<if condition="$show['avatar']">
<div class="smallfont">
<br />
<a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" style="filter:alpha(opacity=200)" /></a>
</div> </if>
Change whats in green to change opacity, lower number less seen, higher the number the more it is visible.
Please click install if you use this.
|