QUOTE(pandy @ Feb 9 2011, 01:13 PM)

I wouldn't do it for a whole page either, but the concept is to position an ordinary image (that is scalable) behind the content or the other way around. The below ain't pretty, but you can see how it's done.
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<style type="text/css">
<!--
body { margin: 0; padding: 0;
font: bold 200% sans-serif;
color: #fff; background: transparent }
#content { position: absolute; top: 0 }
-->
</style>
</head>
<body>
<div><img src="http://forums.htmlhelp.com/uploads/av-3.jpg" width="100%" alt="Darin"></div>
<div id="content">
<h1>This is my Darin fan site</h1>
<p>
All content goes in the #content DIV</p>
<p>
Darin for president!</p>
<p>
Yeah!</p>
</div>
</body>
</html>
Ok, this is the code I used:
CODE
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<meta name="copyright" content="Copyright © 1990-2006 Portia Munson, All Rights Reserved">
<meta name="description" content="Portia Munson is a visual artist who works in a variety of media including installation, painting, photography and sculpture.">
<title>Portia Munson</title>
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen" />
<style type="text/css">
body { margin: 0; padding: 0;
font: bold 200% sans-serif;
color: #fff; background: transparent }
#content { position: absolute; top: 0 }
html > body { font-size: 10px; }
h1 {
color: #dc5c06;
float: right;
font: normal 3.0em/1.0em Georgia, serif;
right:50px;
position: relative;
text-align: center;
top: 21px;
}
a {
color: #fef59a;
text-decoration: none;
}
a:hover {
color: #FFF;
}
</style>
<meta name="verify-v1" content="n49F5pn/+rp35cKmP9avkRcnJNZ9jIfLK1vg5Umc34Y=" />
</head>
<body>
<h1 style="position:absolute; margin-right:-10px;">portiamunson.com <a href="home.html" title="Portia Munson Home">enter</a></h1>
<div><img src="index2.jpg" width="100%" alt="image"></div>
</div>
</body>
</html>
You can see the results
hereThis method worked when I locally tested out side of my root folder, but when I put it in my root folder (it is the index) it will not "zoom"
What is the issue?
--