View Full Version : Spaces between tables


dan8
04-23-2003, 11:31 PM
Hey,

On my site (http://dumbass.iscrappy.com/danbio.htm), above the vertical navigation buttons, and below them there's a space. I made sure that the rowspan was 2, and I triple checked my code, and I can't seem to find the problem. Could somebody please help!!!!!!!

Thanks

starlet
04-23-2003, 11:46 PM
Take out the unessisary (sp?) line breaks in the code...it works usually! eg instead of

<table width=70% border=0 cellpadding=0 cellspacing=0 colspan=2 bgcolor="000000">
<tr>
<td>
<table border=0 width=100% cellpadding=0 cellspacing=0>
<tr>
<td><img src="topteam.jpg"></td>
</tr>
</table>

try

<table width=70% border=0 cellpadding=0 cellspacing=0 colspan=2 bgcolor="000000"><tr><td><table border=0 width=100% cellpadding=0 cellspacing=0><tr><td><img src="topteam.jpg"></td></tr></table>

dan8
04-24-2003, 12:18 AM
It didn't work :(