Although I've not multi-browser tested this yet, it's looking good in Firefox.
Change the above code from
PHP Code:
<tr align="center">
<td class="thead" width="28px"></td>
<td class="thead" width="400px" align="$stylevar[left]"></td>
<td class="thead" width=""></td>
<td class="thead" width="60px"></td>
<td class="thead" width="80px"></td>
</tr>
to
PHP Code:
<tr align="center">
<td class="theadblank" width="28px"></td>
<td class="theadblank" width="400px" align="$stylevar[left]"></td>
<td class="theadblank" width=""></td>
<td class="theadblank" width="60px"></td>
<td class="theadblank" width="80px"></td>
</tr>
and then add this CSS:
PHP Code:
.theadblank { margin: 0px; padding: 0px; height: 0px; background: #FFFFFF; }
That seems to work so far.
Anybody have objections as to why this may not work or would otherwise cause problems with certain browsers?
(I mostly care about IE7-8, FF3, Safari4-5, Chrome4+ ... 95%+ of site traffic.)
Thanks for your reply.