OK, try this: edit ace.php, and remove the class="columntable" from the w_top_logo div; I think that is all that's required to fix this particular piece. Caveat: dunno what else this might break, but I can't find any nasty fallout.
Before:
Code:
<div class="wrap global <?php $this->html('pagename'); ?>" id="wrap">
<div class="custom"><?php $this->html('customarea1'); ?></div>
<div class="w_top_logo">
<table cellspacing="0" cellpadding="0" border="0" class="columnTable">
After:
Code:
<div class="wrap global <?php $this->html('pagename'); ?>" id="wrap">
<div class="custom"><?php $this->html('customarea1'); ?></div>
<div class="w_top_logo">
<table cellspacing="0" cellpadding="0" border="0" >
I'd love to know if this fixes it for you, too. -Lane