Re: spacing gaps, have tried everything... -
08-27-2004
, 05:04 PM
Hello,
The image in the bottom left is 50px high, but the table it is in, as well as
the td, have height set at 53.
Remove those heights from the code. The table will shrink to the height of the
image, 50px, and you'll lose the space.
You can also remove the width of the cell the table is in, as well as the
alignments, and set the next cell to a width of 100%. That will always push the
cell the image is in to the left edge. Just makes for shorter code.
Change this:
<table width="100%" height="53" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="57" height="53" nowrap><div align="left"><img
src="/nav/curv_bl.gif" width="53" height="50" align="bottom"></td>
<td width="763" nowrap><div align="center"><font face="Georgia, Times
New Roman, Times, serif">Patients | Professionals |
About
Us | Contact | Home</font></div></td>
TO this:
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><img src="curv_bl.gif" width="53" height="50"></td>
<td width="100%" nowrap><div align="center"><font face="Georgia, Times
New Roman, Times, serif">Patients | Professionals |
About
Us | Contact | Home</font></div></td>
Take care |