Quote:
Originally Posted by RDX1
Any way to fix this glow problem? It covers the online image, ect.
Great hack btw!
|
ya, i fixed it, just rearranging/adding divs. this will push the online status down tho, but i don't care.
I am NOT using the default skin so this may be diff for your styles.
in postbit find
PHP Code:
<td nowrap="nowrap"> <div id="postmenu_$post[postid]"><if condition="$show['profile']">
and this
PHP Code:
<if condition="$post['usertitle']">
delete everything inbetween and replace with this
PHP Code:
<if condition="$show['profile']">
<if condition="$post['glowcolor']"><div id="postmenu_$post[postid]" style="filter:Glow(Color=$post[glowcolor],Strength=$post[glowstrength]); width:100%;"><else /><div id="postmenu_$post[postid]"></if>
<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>
</div>
<div id="postmenu_$post[postid]">
$post[onlinestatus]
<script type="text/javascript"> vbmenu_register("postmenu_$post[postid]", true); </script>
</div>
<else />
<div id="postmenu_$post[postid]">
$post[musername]
</div>
</if>
no support for this, so some trial and error on your part i'm sure.