Forum Moderators: phranque
TIA,
George
Try this somewhere between the <head> and </head> tags in your document:
<style>
body {background: url(bg.jpg) #fff no-repeat top left fixed; text-align:center;}
</style>
You'll need to replace bg.jpg with the relative filepath of your background image (no need to enclose the filename in quote marks).
Also, you'll need to replace #fff with your chosen background colour.
e.g. if the background colour is bright red and you would normally use:
<body bgcolor="#FF0000">
you would use #f00 in the CSS styling above.