Hi there wolvies,
Technically, it is possible to solve your problem using only one
table. Although, browsers don't like the idea of rows that don't line
up perfectly with other rows in the same table. Which means you will
probably get some funny looking results if you display this code in
your browser:
<table border="0" align="center" cellspacing="5">
<tr>
<td colspan="33%" align="center"><a href="dxmas0044.jpg"><img
src="sqdxmas0044.jpg" border=0></a></td>
<td colspan="33%" align="center"><a href="dxmas0045.jpg"><img
src="sqdxmas0045.jpg" border=0></a></td>
<td colspan="33%" align="center"><a href="dxmas0047.jpg"><img
src="sqdxmas0047.jpg" border=0></a></td>
</tr>
<tr>
<td colspan="50%" align="center"><a href="dxmas0048.jpg"><img
src="sqdxmas0048.jpg"
border=0></a></td>
<td colspan="50%" align="center"><a href="dxmas0049.jpg"><img
src="sqdxmas0049.jpg"
border=0></a></td>
</tr>
</table>
As you can see, instead of using a colspan of 1.5, I used percentages,
and chose 50%, which will cause it to span half of the table. In the
row with 3 cells, I used a colspan of 33% (Since 3 x 33 = 99, which is
as close as you can get to 100%, which is what your browser wants) Try
using this code, it may work for you, but most likely it will have
alignment issues.
The proper way to do such a thing would be to have a table with 5
columns, or use multiple tables, as you already mentioned. I have
written out the code for you to try.
Table with 5 columns:
<table border="0" align="center">
<tr>
<td><a href="dxmas0044.jpg"><img src="sqdxmas0044.jpg"
border=0></a></td>
<td> </td>
<td><a href="dxmas0045.jpg"><img src="sqdxmas0045.jpg"
border=0></a></td>
<td> </td>
<td><a href="dxmas0047.jpg"><img src="sqdxmas0047.jpg"
border=0></a></td>
</tr>
<tr>
<td> </td>
<td><a href="dxmas0048.jpg"><img src="sqdxmas0048.jpg"
border=0></a></td>
<td> </td>
<td><a href="dxmas0049.jpg"><img src="sqdxmas0049.jpg"
border=0></a></td>
<td> </td>
</tr>
</table>
Multiple tables:
<table border="0" align="center">
<tr>
<td width="111"><table width="100%" border="0">
<tr>
<td align="center"><a href="dxmas0044.jpg"><img
src="sqdxmas0044.jpg" border=0></a></td>
<td align="center"><a href="dxmas0045.jpg"><img
src="sqdxmas0045.jpg" border=0></a></td>
<td align="center"><a href="dxmas0047.jpg"><img
src="sqdxmas0047.jpg" border=0></a></td>
</tr>
</table></td>
</tr>
<tr>
<td align="center"><table border="0">
<tr>
<td align="center"><a href="dxmas0048.jpg"><img
src="sqdxmas0048.jpg"
border=0></a></td>
<td align="center"><a href="dxmas0049.jpg"><img
src="sqdxmas0049.jpg"
border=0></a></td>
</tr>
</table></td>
</tr>
</table>
Hopefully one of these works for you. The multiple table version might
be a better choice if the one with 5 columns does not fit on your
screen. Please let me know if you have any problems with the code I
provided.
Thanks for using Google Answers! |