View Full Version : background picture still when I scroll down the site?


vitkar
06-16-2004, 02:22 AM
Hi everyone!

I need help with one thing (not sure if I should put this on this forum) but the thing is that I need to know how to make the background picture on my site stay still when I scroll down the site...?

Thanks, Vitkar

Kayla33
06-16-2004, 02:26 AM
oh oh oh!!
i know this one! i use it all the time on my website:D
Here's the code:
<style>
body {background-image: url("ENTER BACKGROUND URL HERE");
background-repeat:
repeat;
background-attachment: fixed}

vitkar
06-16-2004, 02:37 AM
thank u, thank u, thaaaaank you!!!

vitkar
06-16-2004, 02:38 AM
oh no, it isn't the right code... I meant that I didn't want it to repeat, just stay still all the time... like, follow when you scroll down the site...?

Kayla33
06-16-2004, 02:46 AM
hmm .. that hould be right .. do you mean that you want the background to stay still while you scroll down the page? if so, thats a fixed background .. ands the code for it...

kittycat
06-16-2004, 03:01 AM
If you don't want it to repeat just change that section...
body {background-image: url("ENTER BACKGROUND URL HERE");
background-repeat:no-repeat;
background-attachment: fixed}