I'd like to reopen this so I can weigh in on the issue as well. I looked at the page source, and the segment which handles the banner is a table in the first cell of the main table:
Code:
<table border="0" width="100%" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="left">
<table border="0" cellpadding="0" cellspacing="0">
<tr><td width="100%"><nobr><a href="http://www.badastronomy.com"><img src="/images/misc/balogo.jpg" width="135" height="113" alt="Bad Astronomy" border="0"></a>
<a href="http://www.bautforum.com"><img src="/images/misc/bautlogo.jpg" width="497" height="113" alt="BAUT" border="0"></a>
<a href="http://www.universetoday.com"><img src="/images/misc/utlogo.jpg" width="148" height="113" alt="Universe Today" border="0"></a></nobr>
</td>
</tr>
</table></td>
<td align="right">
</td>
</tr>
</table>
The banner table is inside a left-centered cell, so they are justified left no matter what their attributes. My fix:
Code:
<table border="0" width="100%" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="center"> etc.
It's not desireable, but it works. I wouldn't mid a centered banner myself.
