Aepic : FYI, it's possible to prevent tiling of backgrounds using the CSS attribute : background-repeat:none.
Janis : z-index is a style sheet attribute which determines the 'vertical positioning' of various 'styles' or 'layers'. What Aepic was trying to explain was that you could try and combine JavaScript and z-index properties to center an image so that it's centered on the page, doesn't move and acts like a background, then set the other z-index properties so that the text and images on your page is a 'level' above the image and will still function normally.
As for the shifting text... Here's the offending code :
Code:
<tr>
<td width="378" height="119"><td width="178" height="119"><img src="carlalogo.gif" width="218" height="178" alt="" border="0"></td>
</td>
You can't ensconce a TD inside another TD. You'd need to create a new table inside that TD for it to work properly.
Hope this helps.
Bookmarks