quote:
Originally posted by ranchhand:
Anybody know of a way to prevent Frontpage 2000 from tiling background images?? I'm trying for a special effect with a large, single background image in the table, but can't stop it from repeating. Maybe custom code HTML?? Any suggestions? Thanx
ranchie
This is possible to do if you are still interested. I ran into the same problem with my site but I went and found the code that someone else used and it worked great.
<style>
body {background-image: url(wherever\image.jpg);
background-attachment: fixed;
background-repeat: no-repeat;
background-position: center center}
</style>
You need to insert this right before your </head> tag. You also need to change the url so that FP knows where to find the image that you are going to display. Next of all you need to go to the page that you want to apply this affect to and right click and choose page properties then enable background picture and watermark then choose the picture that you want to display. This should work.
[This message has been edited by jessecan (edited 03-23-2001).]
[This message has been edited by jessecan (edited 03-23-2001).]