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

VanMac

macrumors 6502a
May 26, 2005
914
0
Rampaging Tokyo
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...
 

steelphantom

macrumors 6502a
Oct 15, 2005
555
1
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.
 

Stampyhead

macrumors 68020
Sep 3, 2004
2,294
30
London, UK
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.