PDA

View Full Version : link


jadeleah
03-06-2003, 04:26 AM
I want to have the hover work on my text links & I can't find it referenced at the moment. here's the code i have:
<STYLE TYPE="text/css">
<!--
BODY {
scrollbar-face-color : #495A7B ;
scrollbar-arrow-color : #495A7B ;
scrollbar-shadow-color : #495A7B ;
scrollbar-base-color : #495A7B

:link {
Text-Decoration : None ;
a : hover{
color:red
}
-->
</STYLE>
I want to keep all that's here. Right now the text decoration none is not working, it's showing an underline. I want to get rid of that. Thanks in advance!
JadeLeah

x_goose_x
03-06-2003, 04:41 AM
change:

:link {
Text-Decoration : None ;

to:

a:link {
text-decoration : none ;

pb&j
03-06-2003, 04:45 AM
Originally posted by jadeleah
I want to have the hover work on my text links & I can't find it referenced at the moment.

a : hover{
color:red
}

cg9com
03-06-2003, 04:46 AM
you can use "a" in your CSS, there are a couple psuedos to go with it, like so.

a
:hover
:active
:visited

so integrate it like this.
a:hover { text-decoration:none}

jadeleah
03-06-2003, 04:54 AM
thanks all
JadeLeah