View Full Version : Repeating background (Y)...


cruel_lovely
01-04-2006, 08:22 PM
What's the code? Here's what I have:

<style type="css">
BODY {background-image: URL(http://frickandfrack.noads.biz/images/bg.gif)}
background-repeat: repeat-y}
</style>

It's in the body. I've searched for the code and that's all I came up with... Can somebody help me? I've messed around with it a little but nothing seems to work.

Thanks.

djou
01-04-2006, 08:34 PM
You put a right bracket (}) instead of a semi-colon (; ). It should read like this:


body{background-image:url(http://frickandfrack.noads.biz/images/bg.gif);
background-repeat: repeat-y}

You could even combine them:

body{background:url(http://frickandfrack.noads.biz/images/bg.gif) repeat-y}