View Single Post
  #2 (permalink)  
Old 02-04-2004, 03:16 AM
southplatte's Avatar
southplatte southplatte is offline
WebProWorld Veteran
 

Join Date: Jul 2003
Location: Colorado
Posts: 381
southplatte RepRank 1
Default

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!
Reply With Quote