OK.
The background will be configured in the body CSS
HTML:
body {background:url('image.jpg');}
If you want it to be fixed
HTML:
body {background:url('image.jpg'); background-attachment:fixed;}
The page (white container) will be a div with fixed width (lets say 900 pixels), and we want it to be centered.
The div will be configured
HTML:
#page {width:900px; background:#fff;}
To center it we should tell to the body to do it
HTML:
body {background:url('image.jpg'); background-attachment:fixed; text-align:center;}
And the page should be free
HTML:
#page {width:900px; background:#fff; margin:auto;}
and all together:
CSS
HTML:
body {background:url('image.jpg'); background-attachment:fixed; text-align:center;}
#page {width:900px; background:#fff; margin:auto;}
HTML
HTML:
<body>
<div id="page"></div>
</body>
You can custom it however you like. Adding border to the page sides, change width, etc...
-
Enjoy, and good luck.
