View Full Version : What's wrong with my code?


Gulje
07-25-2003, 02:25 PM
I'm totally mad at my CSS, 'cause it keeps acting weird, and I've looked over it a thousand times, tried editing it a bit and moved things around, but it still wont work properly. So, what's wrong with it?

The code:

<style type="text/css">

A:link
{ text-decoration: underline; color:#000000; }
A:visited
{ text-decoration: underline; color:#000000; }
A:active
{ text-decoration: underline; color:#000000; }
A:hover
{ text-decoration: line-through; color:#000000;

cursor: crosshair; }

body
{ background-color: #ff0000;

font-family: verdana;
color: #000000 ;
font-size: x-small;

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 : #000000; }

</style>

You can easily see the problem here (http://deep-thoughts.net/eilime/bc.html) .. (look at the link colours .. )

Cherchezlafemme
07-25-2003, 02:39 PM
You should be mad at yourself lol, the CSS didn't do anything :lol:

<style type="text/css">

A:link {
color:#000000;
text-decoration: underline;

}
A:visited {
color:#000000;
text-decoration: underline;

}
A:active {
color:#000000;
text-decoration: underline;

}
A:hover {
color:#000000;
text-decoration: line-through;

}

BODY {
background-color: #ff0000;
cursor: crosshair;
font-family: verdana;
color: #000000 ;
font-size: x-small;
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 : #000000;
}

</style>





Does that work?

Gulje
07-25-2003, 02:45 PM
Sadly no ... and I am mad at myself, I normally don't have problems with my CSS *lol*

Cherchezlafemme
07-25-2003, 02:52 PM
How about this?


<style type="text/css">
<!--
body {
background-color: #ff0000;
font-family: verdana;
color: #000000 ;
font-size: 10pt;
scrollbar-base-color: #000000;
scrollbar-shadow-color: #000000;
scrollbar-highlight-color: #000000;
scrollbar-3dlight-color: #000000;
scrollbar-darkshadow-color: #000000;
scrollbar-track-color: #000000;
scrollbar-arrow-color: #000000;
}
A:link {
COLOR: #000000;
TEXT-DECORATION: underline;
}
A:visited {
COLOR: #000000;
TEXT-DECORATION: underline;
}
A:active {
COLOR: #000000;
TEXT-DECORATION: underline;
}
A:hover {
COLOR: #000000;
TEXT-DECORATION: line-through;
}

//--!>
</style>

Gulje
07-25-2003, 02:55 PM
Thank you, thank you, thank you so so so much! :D:D I'm so hapy now *lol*

Cherchezlafemme
07-25-2003, 02:56 PM
:lol: You're welcome!