Not entirely sure what you mean by watermark a background image. Do you mean place a watermark on the background image? Or place a background image like a watermark on the page?
If you're going for the second scenario then you can achieve the effect through CSS. Make sure you define an ID for the table in the table tag. So if your table was something simple like this:
HTML Code:
<table width="100%" height="179" border="0" cellpadding="0" cellspacing="0" id="table1" >
<tr>
<td> </td>
</tr>
</table>
Then make the id attribute of the table tag something unique (no spaces, if you capitolize anything make sure remember it).
Then, in the head tags of your page place the CSS code:
Code:
<style type="text/css">
<!--
#table1 {
background-image: url(http://yoursite.net/images/1_large.jpg);
background-repeat: no-repeat;
background-position: center;
}
-->
</style>
Replace table1 with whatever your table id is and the background-image attribute with the path to your background image.
If you have an external stylesheet already linked, then you can place the CSS in there instead.
|