View Single Post
Old 10-26-2002, 06:55 AM   #2 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,489
sde is on a distinguished road
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.
sde is offline   Reply With Quote