help with tables

windows

Guest
im trying to get it where there's no space between any of my images (im using an image map for navigation); and it keeps putting a space there, i dont know what im doing wrong; please help:<br />
<br />
<table cellspacing="0" cellpadding="0" border="0" width="968" align="center"><br />
<tr><br />
<td><br />
<img src=http://www.htmlforums.com/archive/index.php/"logo.jpg" width="968" height="200" border="0" alt="Final Fantasy Temple"><br />
</td><br />
</tr><br />
<tr><br />
<td><br />
<tr><br />
<td><br />
<img src=http://www.htmlforums.com/archive/index.php/"mainmenu.jpg" height="150" width="100" border="0" alt="Main Menu"><br />
</td><br />
</tr><br />
<tr><br />
<td><br />
<img src=http://www.htmlforums.com/archive/index.php/"finalfantasymenu.jpg" height="200" width="100" border="0" alt="Final Fantasy Menu"><br />
</td><br />
</tr><br />
<tr><br />
<td><br />
<img src=http://www.htmlforums.com/archive/index.php/"mediamenu.jpg" height="200" width="100" border="0" alt="Multmedia Menu"><br />
</td><br />
</tr><br />
</td><br />
</tr><br />
</table><!--content-->keep your td tags and image tags on the same line:<br />
<br />
<td><img src=http://www.htmlforums.com/archive/index.php/"logo.jpg" width="968" height="200" border="0" alt="Final Fantasy Temple"></td><!--content-->Conspiracy,<br />
As well as what Kevin said, try to get into the habit of putting height and width properties into your <td> tags. This renders the page quicker and avoids any formatting problems Netscape may show up.<br />
<br />
Eg.<br />
<br />
<td width="968" height="200"><img src=http://www.htmlforums.com/archive/index.php/"logo.jpg" width="968" height="200" border="0" alt="Final Fantasy Temple"></td><br />
<br />
:)<!--content-->
 
Back
Top