Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
Hey.

Took a look at your source. Your image is being inserted into the page in a paragraph tag. Have you tried setting the background image of the BODY to be the image that you want? You can do this in dreamweaver by examining page properties, and setting background image of the page.

Hope this helps...
 
Using CSS it would be:

<style type="text/css">
body {
background: url('http://image-url') top center;
}
</style>

Replace the "image-url" in that code with whatever the image's actual URL is. Also, make sure that the preceding code is between the <head> and </head> tags in your html document.
 
steelphantom said:
Using CSS it would be:

<style type="text/css">
body {
background: url('http://image-url') top center;
}
</style>

Replace the "image-url" in that code with whatever the image's actual URL is. Also, make sure that the preceding code is between the <head> and </head> tags in your html document.
And make sure you set repeat to "None."
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.