In your quote_randomquote template, it looks like you have this right now:
HTML Code:
<tr><td class="alt2"></td>
<td class="alt2" width="70%"><div margin-right:20%;>
<i><p>$randomquote[quote]</p></i>
<p style="font-weight:bold;margin-left:50%;">- $randomquote[author]</p>
</div>
</td><td class="alt2" valign="top">
<!-- no quoteid
<a style="float:right;" href="http://forums.anarchystar.com/quotes.php?do=view"eid=35">#35</a>
end no quoteid-->
</td>
</tr>
Replace that with this:
HTML Code:
<tr>
<td class="alt2" colspan="3" width="70%"><div margin-right:20%;>
<i><p>$randomquote[quote]</p></i>
<p style="font-weight:bold;margin-left:50%;">- $randomquote[author]</p>
</div>
</td>
</tr>
I haven't tested it, but it should work.