Ryan, I already tried all those things. I think the reason why those dont work is because all the content is within one cell, and I want some of that content to stick at the top, and some of it to stick at the bottom, which doesn't work.
Lchad, that's what I was trying to do just now but the problem is that I am using cellspacing="10" and cellpadding="5" on the table, which makes two different cells separated with white lines. This is the table that separates each sneaker design. But, within each cell of that table, there is another table which, if only I could make the height=100%, which of course doesn't work, it would fill up the entire cell and everything would be lined up perfectly. Here is the code:
Quote:
<table width="700" border="0" cellspacing="10" cellpadding="5">
<tr>
<td width="50%" align="center" valign="top" class="boxed"><table width="100%" border="0" cellpadding="5" cellspacing="0">
<tr>
<td rowspan="2" align="center" bgcolor="#001A3A" ><a href="gallery/spongebig.jpg"><img src="gallery/sponge.jpg" width="183" height="137" border="2" /></a></td>
<td align="center" bgcolor="#001A3A"><a href="gallery/sponge1big.jpg"><img src="gallery/sponge1.jpg" alt="sponge" width="75" height="56" border="2" /></a></td>
</tr>
<tr>
<td align="center" bgcolor="#001A3A"><a href="gallery/sponge2big.jpg"><img src="gallery/sponge2.jpg" width="75" height="56" border="2" /></a></td>
</tr>
<tr>
<td colspan="2"><img src="gallery/spongetext.gif" width="310" height="35" /> <br />
<br />
<span class="style2">$99.99 </span> <a href="buyit.shtml"><img src="buyit.gif" width="150" height="40" border="0" /></a></td>
</tr>
</table></td>
<td width="50%" align="center" valign="top" class="boxed"><table width="100%" border="0" cellpadding="5" cellspacing="0">
<tr>
<td rowspan="2" align="center" bgcolor="#001A3A" ><a href="gallery/bezzlebig.jpg"><img src="gallery/bezzle.jpg" width="183" height="137" border="2" /></a></td>
<td align="center" bgcolor="#001A3A"><a href="gallery/bezzle1big.jpg"><img src="gallery/bezzle1.jpg" alt="sponge" width="75" height="56" border="2" /></a></td>
</tr>
<tr>
<td align="center" bgcolor="#001A3A"><a href="gallery/bezzle2big.jpg"><img src="gallery/bezzle2.jpg" width="75" height="56" border="2" /></a></td>
</tr>
<tr>
<td colspan="2"><img src="gallery/bezzletext.gif" width="310" height="45" /> <br />
<br />
<span class="style2">$109.99 </span> <a href="buyit.shtml"><img src="buyit.gif" width="150" height="40" border="0" /></a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="50%" align="center" valign="top" class="boxed"><table width="100%" border="0" cellpadding="5" cellspacing="0">
<tr>
<td rowspan="2" align="center" bgcolor="#001A3A" ><a href="gallery/casperbig.jpg"><img src="gallery/casper.jpg" width="183" height="137" border="2" /></a></td>
<td align="center" bgcolor="#001A3A"><a href="gallery/casper1big.jpg"><img src="gallery/casper1.jpg" alt="sponge" width="75" height="56" border="2" /></a></td>
</tr>
<tr>
<td align="center" bgcolor="#001A3A"><a href="gallery/casper2big.jpg"><img src="gallery/casper2.jpg" width="75" height="56" border="2" /></a></td>
</tr>
<tr>
<td colspan="2"><img src="gallery/caspertext.gif" width="310" height="58" /> <br />
<br />
<span class="style2">$149.99 </span> <a href="buyit.shtml"><img src="buyit.gif" width="150" height="40" border="0" /></a></td>
</tr>
</table></td>
<td align="center" valign="top" class="boxed"><table width="100%" border="0" cellpadding="5" cellspacing="0">
<tr>
<td rowspan="2" align="center" bgcolor="#001A3A" ><a href="gallery/tweetybig.jpg"><img src="gallery/tweety.jpg" width="183" height="137" border="2" /></a></td>
<td align="center" bgcolor="#001A3A"><a href="gallery/tweety1big.jpg"><img src="gallery/tweety1.jpg" alt="sponge" width="75" height="56" border="2" /></a></td>
</tr>
<tr>
<td align="center" bgcolor="#001A3A"><a href="gallery/tweety2big.jpg"><img src="gallery/tweety2.jpg" width="56" height="75" border="2" /></a></td>
</tr>
<tr>
<td colspan="2"><img src="gallery/tweetytext.gif" width="310" height="74" /> <br />
<br />
<span class="style2">$119.99 </span> <a href="buyit.shtml"><img src="buyit.gif" width="150" height="40" border="0" /></a></td>
</tr>
</table></td>
</tr>
</table>
|