Hello Hush,
Since you are using tables in your design, to set the images as the background for the table cells just do the following:
In the <TD> tags specify the image as the background for the cell example:
<td background="http://url/images/image_name.jpg">
and remove the <img> tag that is in between your <td> tags
------------------------------------
Some of the sample code you posted with changes made:
<TABLE WIDTH=762 BORDER=0 CELLPADDING=0 CELLSPACING=0>
<TR>
<TD COLSPAN=2 background="http://url/images/image_name.jpg">
</TD>
</TR>
<TR>
<TD ROWSPAN=4 background="http://url/images/image_name.jpg">
</TD>
Hope this helps!
|