In quotes.php, find
PHP Code:
$votebutton = '<tr><td><div align="center"><input type="button" class="form" name="vote" id="vote" onclick="document.ratings.submit();" value="' . $vbphrase['vote'] . '" /></div></td></tr>';
replace that with this (it's in there twice, replace both)
PHP Code:
$votebutton = '<tr><td colspan="2" class="tcat"><div align="center"><input type="button" class="form" name="vote" id="vote" onclick="document.ratings.submit();" value="' . $vbphrase['vote'] . '" /></div></td></tr>';
That should fix the vote button. To fix the cell borders on the Aria style, try this:
In the quote_listquote template, find
HTML Code:
<table class="tborder" cellpadding="2" cellspacing="0" border="0" width="$stylevar[tablewidth]" align="center">
and replace that with
HTML Code:
<table class="tborder" style="border-top: #DFE6EF 0px solid;border-left: #DFE6EF 0px solid;" cellpadding="2" cellspacing="0" border="0" width="$stylevar[tablewidth]" align="center">
that
should take care of it.