View Full Version : Can someone help me?


PebblesL5
01-15-2006, 03:16 AM
Ok well I've been trying ot creat this style sheet for my site for about a cuple of days now and no matter what I do it goes wrong. Can someone help or find the problem? Here it is:


<style type="text/css">
background-color:333333;
background-image:url('http://i28.photobucket.com/albums/c203/PebblesL5/butterfly.gif');
background-position:bottom left;
background-repeat:no-repeat;
background-attachment:fixed;

}

direction:ltr;
scrollbar-face-color:000000;
scrollbar-highlight-color: 00ff00;
scrollbar-3dlight-color: 9900CC;
scrollbar-darkshadow-color:9900CC;
scrollbar-shadow-color: 00ff00;
scrollbar-arrow-color:9900CC;
scrollbar-track-color:000000;

A:link
{ text-decoration: line-through; color:#00ff00; }
A:hover
{ text-decoration: underline overline; color:#00ff00;

font-family: Courier New;
color: #FF0066 ;
letter-spacing: 3pt;
font-weight: normal;
font-size: small;


</style>





Hope someone can figure this out.

djou
01-15-2006, 03:22 AM
It should work now:

<style type="text/css">
body {
background-color:333333;
background-image:url('http://i28.photobucket.com/albums/c203/PebblesL5/butterfly.gif');
background-position:bottom left;
background-repeat:no-repeat;
background-attachment:fixed;
direction:ltr;
scrollbar-face-color:000000;
scrollbar-highlight-color: 00ff00;
scrollbar-3dlight-color: 9900CC;
scrollbar-darkshadow-color:9900CC;
scrollbar-shadow-color: 00ff00;
scrollbar-arrow-color:9900CC;
scrollbar-track-color:000000;
}

A:link
{ text-decoration: line-through; color:#00ff00; }
A:hover
{ text-decoration: underline overline; color:#00ff00;

font-family: Courier New;
color: #FF0066 ;
letter-spacing: 3pt;
font-weight: normal;
font-size: small;
}
</style>

However, if the last part (from font-family to font-size) needs to be applied to the entire page, it should be this way:

<style type="text/css">
body {
background-color:333333;
background-image:url('http://i28.photobucket.com/albums/c203/PebblesL5/butterfly.gif');
background-position:bottom left;
background-repeat:no-repeat;
background-attachment:fixed;
direction:ltr;
scrollbar-face-color:000000;
scrollbar-highlight-color: 00ff00;
scrollbar-3dlight-color: 9900CC;
scrollbar-darkshadow-color:9900CC;
scrollbar-shadow-color: 00ff00;
scrollbar-arrow-color:9900CC;
scrollbar-track-color:000000;
font-family: Courier New;
color: #FF0066 ;
letter-spacing: 3pt;
font-weight: normal;
font-size: small;
}

A:link
{ text-decoration: line-through; color:#00ff00; }
A:hover
{ text-decoration: underline overline; color:#00ff00;
}
</style>

PebblesL5
01-15-2006, 03:30 AM
Hmm..ok, I'll try that then post back.

PebblesL5
01-15-2006, 03:34 AM
It worked, thank you!