You cannot stretch background images. You can appear to extend them by matching the background color to their background color:
Code:
body, html, div, font, p, td {
font-family: Tahoma;
font-size: 7pt;
line-height: 7pt;
color: #000000;
margin: 0;
padding: 0;
background-color: #84A753;
}
In another matter I notice that your:
Code:
<div style="position:absolute; top:-20; left:0; background:url(http://i282.photobucket.com/albums/kk280/moon-productions/streacth2.png); height:150px; width:100%;"></div>
is covering the top of your table. You could make it:
Code:
<div style="margin-top:-20px; left:0; background:url(http://i282.photobucket.com/albums/kk280/moon-productions/streacth2.png); height:150px;"></div>
and place it before your table in the source code:
Code:
<div style="margin-top:-20px; left:0; background:url(http://i282.photobucket.com/albums/kk280/moon-productions/streacth2.png); height:150px;"></div>
<!-- ImageReady Slices (Untitled-2) -->
<TABLE WIDTH=805 BORDER=0 CELLPADDING=0 CELLSPACING=0>
<TR>
<TD>
<IMG SRC="http://i282.photobucke . . .
That would probably work out better.
Bookmarks