View Full Version : Ahh!


whiteyguy123
11-12-2003, 10:51 PM
Here's my CSS...I tried using it on my website, but for some reason it won't work! (I know i'm not very detailed, sorry lol)

<style type="text/css">

body
{ background: #000000;
background: url("Stars.jpg");
background: fixed;

font-family: "comic sans ms";
color: #FF0000 ;
font-weight: normal;
font-size: medium;

margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0;
}

</style>

kittycat
11-12-2003, 11:00 PM
Is this an external stylesheet? If so, take out the beginning and ending style tags.

whiteyguy123
11-12-2003, 11:47 PM
Ooh ok thanks!

pb&j
11-12-2003, 11:55 PM
you need to fix up your background and other css a bit too...

body {
background-color: #000000;
background-image: url("Stars.jpg");
background-properties: fixed;
font-family: "comic sans ms";
color: #FF0000;
font-weight: normal;
font-size: medium;
margin : 0px;
padding : 0px;
}