where exactly on the page do you want the pictures displayed? and how many per row?
let me know and i'll go ahead and show you. =)
table syntax is as follows:
Code:
<table border=0 cellspacing=0 cellpadding=>
<tr> <!-- First Row -->
<td>first cell</td>
<td>second cell to the right of the last cell</td>
<td>third cell</td>
</tr>
<tr> <!-- Second row from the top -->
<td>cell below first cell</td>
<td>cell below second cell</td>
<td>cell below third cell</td>
</tr>
</table>
that code would make six cells. 2 rows of three. there are many things you can do to position everything exactly where you want, but i don't know where you want them.