Forum Moderators: open
Ex.
<td background="/images/bg.gif">HTML Text</a?
Only the HTML Text prints out, not bg.gif
Thanks!
Really, HTML isn't designed to do what he wants. If he wants to design for print then he might be better going down the PDF route.
<html>
<head>
<style type="text/css">
.overlay
{
position:relative;
left:0px;
top:-300px;
z-index:100
}
</style>
</head>
<body>
<table>
<tr>
<td>
<img src="yourimage.gif" width="300" height="300">
<p class="overlay">Overlayed Text.</p>
</td>
</tr>
</table>
</body>
</html>
Your best bet would be to tell the client that this just isn't possible with HTML.
Also, trying to position text over absolutely positioned images is a bad idea. Different text sizes may cause your text to not line up correctly.