View Full Version : ♥ How do you code fixed backgrounds


irma123456789
11-07-2005, 08:19 PM
♥ How do you code fixed backgrounds can you please help?

Douglas
11-07-2005, 11:34 PM
you need to use css:

background: url("url") fixed;

i think thats right, if not, its just the normal background image thing with fixed on the end.

J-man91
11-07-2005, 11:40 PM
That should work, but if it doesn't, this should:
Background-image: url(yoururl);
background-repeat: no-repeat;

Douglas
11-08-2005, 12:06 AM
ah ok :

background: url(yoururl) fixed, no-repeat;

thats what you want eh? it need to be fixed to lol

pb&j
11-08-2005, 02:07 AM
ah ok :

background: url(yoururl) fixed, no-repeat;

thats what you want eh? it need to be fixed to lol
should be no comma in there.

background: #ffffff url(SomeImage.gif) no-repeat fixed;