View Full Version : BackGround :: It doesn't like me


CCSara3169
01-17-2003, 11:27 PM
here is the code that I'm using. I don't get it, its so annoying, it was working for like a week, untill it just stopped. I check the b/g link, and that link is there.

<style type="text/css">
<!--
body {
background: #FF99FF url(http://www.those-who-wander.net/~niki/wallpaper.gif) no-repeat;
background-attachment: fixed;
font: 7pt "Tahoma";
letter-spacing:2pt;
line-height: 17px;
cursor:crosshair;
}
-->
</style>


I dunno...but I have all these other CSS HTML codes on the site...do I have to put them all into one style sheet? Because my style sheets...like don't work. I must be doing something wrong.

Alcy
01-17-2003, 11:28 PM
Try it now :)

<style type="text/css">
<!--
body
{
background-color:#FF99FF;
background-url: (http://www.those-who-wander.net/~niki/wallpaper.gif);
background-repeat:no-repeat;
background-attachment: fixed;
font: 7pt "Tahoma";
letter-spacing:2pt;
line-height: 17px;
cursor:crosshair;
}
-->
</style>

lefty
01-17-2003, 11:47 PM
it should actually be background-image:url ;)

CCSara3169
01-17-2003, 11:55 PM
I'm sorry...NOTHING is working.

My friend told me about this code that pushes the image to the back, so the words are still on top of it...but its not part of the layout, like you can highlight it and everything. I think that might work.

In the meantime I'm going to try loading the layout to my own server and see if that works. Niki might not have direct linking [but it worked awhile ago!]

PS :: and yes, Niki DID give me permission to use that as my layout as long as i gave her credit

lefty
01-18-2003, 03:40 AM
hmm well if it's still not working out, you can always post a link to the page and we can poke around and see what's up. :)

epolady
01-18-2003, 05:14 AM
<style type="text/css">
<!--
body
{
background-color : #FF99FF;
background-image : url(http://www.those-who-wander.net/~niki/wallpaper.gif);
background-repeat : no-repeat;
background-attachment : fixed;
font-size : 7pt;
font-family : Tahoma;
letter-spacing : 2pt;
line-height : 17px;
cursor : crosshair;
}
-->
</style>

works for me.

CCSara3169
01-18-2003, 07:49 PM
FINALLY! it worked. Thank you epolady, lety and alcy! :)