It shows up like it should in IE, but in firefox my headings aren't aligning right. i have news and pics in a table with 3 cells(whcih is also within a table), the middle cell is acting as a spacer. it appears that it doesn't want to reconize the cell dimensions.
Thanks
Robert
http://outalance.battleclinic.com/tus/
I've looked at your code and i have some thoughts on it.
<div style="position:absolute;left:160;top:68">
<table width=420 height=30 border=0>
<tr valign="top">
<th width="110" height="25">
<div align="left"> <font color="94FFFF" face="FederationDS9Title, arial"><span style="font-size:30"><b>News<b></span></font></div>
</th>
<th width="195" height="25"> 
</th>
<th width="111" height="25">
<div align="left"> <font color="94FFFF" face="FederationDS9Title, arial"><span style="font-size:30"><b>Pics<b></span></font></div>
</th>
</tr>
</table>
</div>
This is I believe the snippet of code you use for the headings.
1)While i'm not sure if its a factor... The combine sum of your cell widths does not equal 420, by my calculation it is 416. Personally I think if you are going to do it like this (using the width parameter) you should use percentages.
2)I think the effect you want to achieve can be done using just two cells.
I'd suggest something along these lines :
<div style="position:absolute;left:0;top:0">
<table height=746 width=967 BORDER=0 CELLPADDING=0 CELLSPACING=0>
<tr>
<td background="images/body_bg.jpg">
<div style="position:absolute;left:160;top:68">
<table width=420 height=30 border=0>
<tr valign="top">
<th height="25">
<font color="94FFFF" face="FederationDS9Title, arial"><span style="font-size:30"><b>News<b></span></font>
</th>
<span style="font-size:30;max-width:111;">
<th height="25">
<font color="94FFFF" face="FederationDS9Title, arial"><b>Pics<b></font>
</th>
</span>
</tr>
</table>
</div>
I'm not sure if my modifications would work... haven't tested it myself. But the principle is to set a max width for the second cell so the first one takes up the rest.
I also think your life would be made easier if you you made use of the class attribute with CSS in order to get rid of your DIV elements which seem to repeat themselves making debugging and understanding the code harder than it should be,
Hope this gives you some food for thought.