So I am working on a project right now and it has been requested of me to do the layout in tables (I know I know).
Everything is going surprisingly well but I got to one hitch and I have validated and re-validated (W3C doesn't seem to like the way my php is spitting somethings out), used table checkers and all sorts of this and cannot seem to get the darn thing to work.
What is wrong is everything shows up as good as it should in firefox (still tweaking here and there). But when I go to explorer I get this large gap in parts of my table (top and bottom). Yes I have the correct colspans.
The code lays out as such
</head>
<body>
<table id="container" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="2"><h1>Office Ecosystem</h1></td>
<td colspan="2" align="right" valign="bottom">Login</td>
</tr>
<tr>
<td id="topleft" rowspan="2"> </td>
<td id="tborder" colspan="2"> </td>
<td id="topright" rowspan="2"> </td>
</tr>
<tr>
//BIG GAP HERE
<td colspan="2">
<span class="mainmenu">
<a href="_blank">NEWS & EVENTS</a> |
<a href="_blank">ABOUT OFFICE ECOSYSTEM</a> |
<a href="_blank">OUR CLIENTS</a> |
<a href="_blank">TRAINING & SUPPORT</a> |
<a href="_blank">CONTACT US</a>
</span>
</td>
</tr>
<tr>
<td colspan="4">
<table width="760px" cellspacing="0" cellpadding="0">
<tr>
<td id="sideborders"> </td>
<td id="imagebanner" background=http://pixelatedkarma.com/s.oe/assets/imagebanner/image1.png alt="Office Ecosystem" /> </td>
<td id="sideborders"> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="4">
<table width="760px" cellspacing="0" cellpadding="0">
<tr>
<td id="sideborders"> </td>
<td id="submenu">This is the submenu</td>
<td id="sideborders"> </td>
</tr>
<tr>
<td id="sideborders"> </td>
<td id="content">
<table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td valign="top">
<h2>This will be content</h1>
<p>BLAH<br>BLAH<br>BLAH<br>BLAH<br>BLAH<br>BLAH<br>BLAH<br>BLAH<br>BLAH<br>BLAH<br>BLAH<br>BLAH<br>BLAH<br>BLAH<br></p>
</td>
<td valign="top">
<h2>This will be content</h1>
<p>this will be content</p>
</td>
</tr>
</table>
</td>
<td id="sideborders"> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td id="bottomleft" rowspan="2"> </td>
//BIG GAP HERE
<td colspan="2" id="bottomcenter">Verisign Stuff</td>
<td id="bottomright" rowspan="2"> </td>
</tr>
<tr height="1px">
<td id="bborder" colspan="2"> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="2">
<h5>
Office Ecosystem in its design, concept, and content are copyright © 2011
</h5>
</td>
<td colspan="2" align="right">
<h5>
This site is powered by
</h5>
</td>
</tr>
</table>
</body>
</html>
Any ideas?