With bgproperties=fixed , it will still tile; which you might not want - check your page in higher resolutions, and if you want only one instance of the image in the background, add
body {background-repeat: no-repeat;}
to your CSS. This will not fix the image, though, simply stop it from tiling - meaning you may wish to use both codes at once.
|