From: sivafx on
Can we achieve in Dreamwever please guide me pls

thank u
From: Osgood on
sivafx wrote:
> Can we achieve in Dreamwever please guide me pls
>
> thank u

Just add the below css to your pages code directly before the closing
</head> tag

<style type="text/css">
body
{
background-image: url(yourImage.jpg);
background-repeat: no-repeat;
background-attachment: fixed
}
</style>


Change yourImage.jpg to the name of YOUR image which should be directly
within the site root folder.

If the image is in a folder within the site root folder then you need to
add the folder name before the image name. Below it shows the image is
in the 'images' folder.

<style type="text/css">
body
{
background-image: url(images/yourImage.jpg);
background-repeat: no-repeat;
background-attachment: fixed
}
</style>
From: lebisol on
sivafx wrote:
> Can we achieve in Dreamwever please guide me pls
>
> thank u

http://www.mostarnetworks.com/index.php/tutorials/view/setting-up-page-properties/