code help

<head><br />
<style type="text/css"><br />
body {background-image: url(image.jpg); background-repeat: no-repeat; background-position: 50% 50%; background-color: #000000;}<br />
</style><br />
</head><br />
<br />
where and how in that code would i put a fixed background code so the background image stays in one place and only the text scrolls?<!--content-->body {background-image: url(image.jpg); background-repeat: no-repeat; background-position: 50% 50%; background-color: #000000;background-attachment: fixed;}<br />
<br />
:rocker:<!--content-->plug it into the body attributes:<br />
<br />
background-attachment: fixed;<br />
<br />
body {<br />
background-image: url(image.jpg);<br />
background-attachment: fixed;<br />
background-repeat: no-repeat;<br />
background-position: 50% 50%;<br />
background-color: #000000;<br />
}<!--content-->thanks alot<!--content-->
 
Back
Top