To have the Arcade Awards have an underline try using this code
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>
<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
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 -->