Also, I moved the trophy so it's placed next to the words Arcade Awards..
to do that find this in postbit_legacy:
Code:
<img src="$vboptions[arcadeimages]/trophy.gif" align="absmiddle" alt="Arcade Awards" border="0" /a>
and delete it...
and use this code in postbit_legacy
Code:
<!-- v3 Arcade -->
<div>
<div id="postmenu_arcade_$post[postid]">
<script type="text/javascript"> vbmenu_register("postmenu_arcade_$post[postid]", true); </script>
<u>Arcade Awards</u> <img src="$vboptions[arcadeimages]/trophy.gif" align="absmiddle" alt="Arcade Awards" border="0" /a>
<div class="vbmenu_popup" id="postmenu_arcade_$post[postid]_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">$post[username]'s Awards</td>
</tr>
<if condition="$post[arcadeawards]!=''">
$post[arcadeawards]
<else />
<tr>
<td class="vbmenu_option" title="nohilite">
$post[username] has no awards.</td>
</tr>
</if>
</table>
</div>
</div>
<!-- /v3 Arcade -->
INSTEAD of the original I have placed in the install notes..
which is:
Code:
<!-- v3 Arcade -->
<div>
<div id="postmenu_arcade_$post[postid]">
<script type="text/javascript"> vbmenu_register("postmenu_arcade_$post[postid]", true); </script>
Arcade Awards
<div class="vbmenu_popup" id="postmenu_arcade_$post[postid]_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">$post[username]'s Awards</td>
</tr>
<if condition="$post[arcadeawards]!=''">
$post[arcadeawards]
<else />
<tr>
<td class="vbmenu_option" title="nohilite">
$post[username] has no awards.</td>
</tr>
</if>
</table>
</div>
</div>
<!-- /v3 Arcade -->