View Full Version : Please Read This!


kingrawr
04-04-2006, 03:32 PM
I need some help coding a background.
The URL is http://i66.photobucket.com/albums/h271/KingRawr/Winter.jpg
I've tried a bunch of stuff but it isn't working.
Can anyone tell me the correct way to code it.
Ah yes and I want it fixed and repeat.
Thank You. :lolo:

Arwen
04-04-2006, 05:30 PM
<style type="text/css">
body {
background-image: url(http://i66.photobucket.com/albums/h271/KingRawr/Winter.jpg);
background-attachment: fixed;
background-repeat: repeat;}
</style>

emmarox
04-04-2006, 10:49 PM
what the kitty said. :)


here kitty kitty

J to the izzosh
04-05-2006, 04:11 AM
:greycat: Mreow?

Arwen
04-05-2006, 12:31 PM
Hey guys, I don't want to sound rude, but don't post unnecessary posts, please! This is our CSS forum and we are here to help people or ask for help. If you want to play any games, go to the Fiction Forum (http://www.lissaexplains.com/forum/forumdisplay.php?f=13). :)

J to the izzosh
04-06-2006, 04:50 AM
Aw, boo... Isn't there soem kind of limit on how many useful posts I'm allowed to make? But if you insist... ;)

I just thought I'd add that the style sheet Arwen listed above should go between the <head> and </head> tags on your page, in case you weren't aware:


<head>
<title>Your Page's Title</title>

<style type="text/css">
body {
background-image: url(http://i66.photobucket.com/albums/h2...r/Winter.jpg);
background-attachment: fixed;
background-repeat: repeat;}
</style>
</head>