Forum Moderators: not2easy
Thanks
(edited by: tedster at 3:45 am (utc) on May 16, 2002)
If you have a slight gap in a table cell you need to place the cells side-by-side in your code.
Instead of
<table>
<tr>
<td>text</td>
<td>more</td>
<tr>
</table>
try this
<table>
<tr>
<td>text</td><td>more</td>
<tr>
</table>
Course you could use CSS to replace your tables as well