Posts: 52
Location: St. Anthony, ID
|
You could try something like this:
<table width="desired width" border=0 cellpadding=0>
<tr>
<td><img src="source"></img></td>
</tr>
<tr>
<td><img src="source"></img></td>
</tr>
</table>
Just remember that <tr> defines a row and <td> sets columns within that row. They must also be ended </tr> </td>.
The way I do it is to go row by row, setting the column data as I go. It's easier to manage too.
HTH.
|