View Full Version : Backround Image


Demented
04-15-2004, 12:10 AM
Hello!
I made a backround, and placed it on my site using CSS. It's smaller then another backround image, and I would like it to show up only once. With the code I'm using now, it's putting it ni twice, becuase of the size. Can I get a code to prevent it from doing so? Thanx :D.

kicker91
04-15-2004, 12:19 AM
Sure!

Add

background-repeat:no-repeat;

to the body { } section. :)

Demented
04-15-2004, 12:38 AM
Oh, thanx! That kind of worked, but not completely. I want to make it go down, for the rest of the page, but I don't want it to be beside itself. Is there anyway to fix that?

kittycat
04-15-2004, 12:55 AM
Maybe try...
background-repeat: repeat-y;
Is that how you want it to look?

Demented
04-15-2004, 01:01 AM
Ohhh, thats perfect! Thanx :D