View Full Version : background


popdiva16
12-19-2004, 12:51 PM
I want to fix my background so that it doesn't repeat and so that it stays in place and doesn't move. Anybody can help me?

MaGiCSuN
12-19-2004, 01:01 PM
what coding are you using currently?

Love,
Mirna

popdiva16
12-19-2004, 01:14 PM
Right now none, but I tried using the css code from lissa's tutorial and put it in between my head tags but it didn't work, so I deleted it.

MaGiCSuN
12-19-2004, 02:50 PM
<style type="text/css">
<!--
body { background-image: url(image.gif);
background-repeat: no-repeat;
background-attachment: fixed;
}
-->
</style>

put that between your <head> and </head> and change image.gif to the image url from your own background.

Love,
Mirna

popdiva16
12-21-2004, 11:23 AM
Thank you, that code works perfectly for what I was intending!