yooo
so once again i have another question concerning the old ways of making websites
this time its about image slicing (cutting an image up and putting it into a table so it will load faster)
my problem at the moment is that when i put all the images in the table i get these white lines that kind of look like padding or even a margin.
so is there a way to get rid of this spacing, i think i've set all margins and padding to 0 but perhaps one of ya'll can give me a hand
heres the code
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Joe's Fruit and Vegetables - Splash Page</title>
</head>
<body>
<table border="1" cellspacing="0" cellpadding="0" align="center">
<tr>
<td colspan="0">
<img src="images/joes-splash-page_swap_part1x1.jpg" alt="Joes Fruit and Vegetable Splash Page" />
</td>
<td>
<img src="images/joes-splash-page_swap_part1x2.jpg" alt="Joes Fruit and Vegetable Splash Page" />
</td>
<td>
<img src="images/joes-splash-page_swap_part1x3.jpg" alt="Joes Fruit and Vegetable Splash Page" />
</td>
<td>
<img src="images/joes-splash-page_swap_part1x4.jpg" alt="Joes Fruit and Vegetable Splash Page" />
</td>
</tr>
<tr>
<td>
<img src="images/joes-splash-page_swap_part2x1.jpg" alt="Joes Fruit and Vegetable Splash Page" />
</td>
<td>
<img src="images/joes-splash-page_swap_part2x2.jpg" alt="Joes Fruit and Vegetable Splash Page" />
</td>
<td>
<img src="images/joes-splash-page_swap_part2x3.jpg" alt="Joes Fruit and Vegetable Splash Page" />
</td>
<td>
<img src="images/joes-splash-page_swap_part2x4.jpg" alt="Joes Fruit and Vegetable Splash Page" />
</td>
</tr>
<tr>
<td>
<img src="images/joes-splash-page_swap_part3x1.jpg" alt="Joes Fruit and Vegetable Splash Page" />
</td>
<td>
<img src="images/joes-splash-page_swap_part3x2.jpg" alt="Joes Fruit and Vegetable Splash Page" />
</td>
<td>
<img src="images/joes-splash-page_swap_part3x3.jpg" alt="Joes Fruit and Vegetable Splash Page" />
</td>
<td>
<img src="images/joes-splash-page_swap_part3x4.jpg" alt="Joes Fruit and Vegetable Splash Page" />
</td>
</tr>
</table>
<table border="0" align="center">
<tr><td>
<a href="html/home.html">
<embed src="media/enterButton.swf" type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">
</embed>
</a>
</td>
</tr>
</table>
</body>
</html>
the attached screen shot shows whats happening
|