The Arcive of vBulletin Modifications Site. |
|
Change Opacity of Avatar Details »»
|
|||||||||||||||||||||||||
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>
Please click install if you use this. Show Your Support
|
|||||||||||||||||||||||||
| Comments |
|
#2
|
|||
|
|||
|
Will this work in all browsers?
|
|
#3
|
||||
|
||||
|
No, it will not, sorry to say.
|
|
#4
|
|||
|
|||
|
I currently only works for IE, but 80% of web users use IE.
|
|
#5
|
||||
|
||||
|
If you want the hack that will do this for online and offline, let me know.
|
|
#6
|
|||
|
|||
|
Quote:
|
|
#7
|
||||
|
||||
|
ty for this hack *clicks install*
|
|
#8
|
||||
|
||||
|
Quote:
|
|
#9
|
|||
|
|||
|
To enable that in Firefox (and in Opera 9) replace original code with following:
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); opacity: 0.2;" /></a>
</div> </if>
|
|
#10
|
||||
|
||||
|
Quote:
|
![]() |
|
|