View Full Version : EeeK! Whats wrong with my style sheet?>!?!


freakEgurl
03-25-2003, 04:04 PM
Ok, i swear style sheets kill. I've used style sheets before for a really long time, but now they;re kinda dissagreeing with me and, simply dont work. I dont know fi it's just me, but My CSS doesnt work. The link stuff works, but everything else is kinda like ignored. I cant see the problem.

<style type="text/css">
<!--

A:link
{ text-decoration: none ; color:#000000 }
A:visited
{ text-decoration: none ; color:#000000 }
A:active
{ text-decoration: none ; color:#000000 }
A:hover
{ text-decoration: overline ; color:#000000 }



cursor:crosshair }

body
{ background-color: #ffffff;
background-image:url(top.gif);
background-repeat:no-repeat;
background-position:top center;

background-attachment:scroll
cursor:crosshair }
font-family: arial;
color: #000000 ;
letter-spacing: 2pt;
font-weight:normal }



scrollbar-face-color : #000000;
scrollbar-highlight-color : #000000;
scrollbar-3dlight-color : #000000; scrollbar-shadow-color : #000000;
scrollbar-darkshadow-color : #000000; scrollbar-track-color : #000000;
scrollbar-arrow-color : #ffffff }

td
{ font-family: arial;
color: #000000;
padding-left: 0cm;
padding-right: 0cm;
padding-top: 0cm;
padding-bottom: 0cm;
padding: 0cm;
padding: 0cm 0cm }

input, textarea
{ background: #000000 url(yourimage.gif);
font-family: arial;
color: #000000;
border-style: solid ;
border-color: ffffff;
border-width: 000000 }

-->
</style>

^^my style sheet. Im sure what th problem is is something very silly, but I simply don't see it.

Penny_Lane
03-25-2003, 05:10 PM
I believe it may have something to do with "cursor:crosshair }" part of it. You have that code all by itself. Also you have quite a few of these } in the section just below it. My site is all done in CSS and sometimes when I get just one teensy symbol wrong or misplaced I end up with a blank page. You also have to end the style </style>. Maybe you did that, I don't know I can't see the post from here. Good luck! =)

Penny_Lane
03-25-2003, 05:11 PM
If you'd like you can check out my code source on my website. http://www.rhapsodyinlyss.com. It's all CSS.

freakEgurl
03-25-2003, 05:20 PM
I took out the cursor:crosshair } .. And stil no change.

epolady
03-25-2003, 05:42 PM
Try something like this:

<style type="text/css">
<!--

A:link
{ text-decoration: none ; color:#000000 }
A:visited
{ text-decoration: none ; color:#000000 }
A:active
{ text-decoration: none ; color:#000000 }
A:hover
{ text-decoration: overline ; color:#000000 }

body
{ background-color: #ffffff;
background-image: url(top.gif);
background-repeat: no-repeat;
background-position: top center;
background-attachment: scroll;
cursor: crosshair;
font-family: arial;
color: #000000 ;
letter-spacing: 2pt;
font-weight:normal;

scrollbar-face-color : #000000;
scrollbar-highlight-color : #000000;
scrollbar-3dlight-color : #000000; scrollbar-shadow-color : #000000;
scrollbar-darkshadow-color : #000000; scrollbar-track-color : #000000;
scrollbar-arrow-color : #ffffff;
}

td
{ font-family: arial;
color: #000000;
padding: 0; }

input, textarea
{ background: #000000 url(yourimage.gif);
font-family: arial;
color: #000000;
border-style: solid ;
border-color: ffffff;
border-width: 000000; }

-->
</style>

hope i got it all...

freakEgurl
03-25-2003, 05:48 PM
Yay! It works. Thankies.

epolady
03-25-2003, 05:51 PM
You're welcome! :)