First off, there are a LOT of nested tables in there. You could simplify it and come out with nicer, easier to manage code.
Your math is a bit off in the cell widths. The very first nested table, in the empty cell between the title graphic and the rollover links, you have the width set to 85. But the max width of your table is only 740. You need to change that 85 to 21:
Code:
<td width="21" valign="top">
<div align="center"></div>
</td>
Second, those tables below are a mess. I don't see why you need so many of them in there. But, to fix your problem, you should be able to just add a width to the bottom td:
Code:
<td colspan="2" width="735">Our goal is your satisfaction, each video production
has hours of creative editing behind it. Using sophisticated editing
programs and high end computer equipment, Let New Born Productions
capture the first precious moments of your babies new life.</td>
</tr>
The site looks just fine in Firefox.
|