|
Wow, what a horrible mish-mash of code.
I'm thinking that MAYBE you might want to start by using style="width:740px;" instead of width=740 on the table that contains everything, as well as all the other tables.
Of course, the ideal thing would be to redo the whole code so that it doesn't use tables at all except when absolutely necessary, and uses just the CSS for the layout. I think the biggest problem you have right now is that you have a big CSS file trying to lay things out, but a lot of your layout instructions are in the table definitions in the html. So there might be some conflicting instructions there, and it's certainly not easy to figure out what is doing what. Personally, I would start a fresh html page and build all the layout into the CSS file and use the html file for JUST the content.
|