simplest solution is to set the marble image to be the pages background image, then for the second image, use a table and set the tables background image
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY background=test2.gif>
<CENTER>
<TABLE background=test1.jpg width=95% height=95%>
<tr align=left valign=top>
<td>
your page content goes here if you want it printed over the centered background image
</td>
</tr>
</TABLE>
</CENTER>
</BODY>
</HTML>
: I want to create a webpage with a background image (marble) that is tiled to make up the main background but in the middle I want another image centered. Is there a way to do this? It can't just be an image centered (using an img tag) because I want to have text over top of it. I can't combine the 2 images to create an image the size of a browser window because different resolutions would show the image in different places, not centered.
:
: Is this possible? Any help would really be appreciated.
:
: Thanks.
: