View Full Version : hover link attributes...


The master
07-06-2002, 12:50 PM
It's been awhile since i've been here. Anyways, my question is does anyone know the CSS code ( or where i might find it ) for the special link effect shown on this site http://kenekila.net/ below the image ( design ) where the link are on the bottom of the page.?

Sheila
07-06-2002, 01:21 PM
Might want to check this page:
http://www.lissaexplains.com/fun7.shtml

The master
07-07-2002, 12:09 PM
thanks :D

chichy
09-22-2003, 11:21 AM
Ok cool, but how would I add it to a stylesheet? Here's mine (I want the shadow blur effect:
<STYLE type="text/css">
<!--BODY {
color: black;
font-size:9pt;
font-family: Trebuchet MS;
line-height: 14px;
}-->
<STYLE type="text/css">
<!--BODY{
background-attachment:fixed;
scrollbar-arrow-color: #14C307;
scrollbar-track-color: #D5D5D5;
scrollbar-face-color: #D5D5D5;
scrollbar-highlight-color: #14C307;
scrollbar-3dlight-color: #14C307;
scrollbar-darkshadow-color: #14C307;
scrollbar-shadow-color: #14C307;
}

<!--
A:link{color:#14C307;TEXT-DECORATION:none}
A:visited{color:#14C307;TEXT-DECORATION:none}
A:active{color:#D5D5D5;TEXT-DECORATION:none;}
A:hover{color:#D5D5D5;TEXT-DECORATION:none;}
-->
</style>
thanx!

MaGiCSuN
09-22-2003, 05:44 PM
your stylesheet is a bit messed up. You only need <style type="type/css"><!-- at the beginning and --></style> at the end.

this should work:

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

BODY {
color: black;
font-size:9pt;
font-family: Trebuchet MS;
line-height: 14px;
background-attachment:fixed;
scrollbar-arrow-color: #14C307;
scrollbar-track-color: #D5D5D5;
scrollbar-face-color: #D5D5D5;
scrollbar-highlight-color: #14C307;
scrollbar-3dlight-color: #14C307;
scrollbar-darkshadow-color: #14C307;
scrollbar-shadow-color: #14C307;
}

A:link{color:#14C307;TEXT-DECORATION:none}
A:visited{color:#14C307;TEXT-DECORATION:none}
A:active{color:#D5D5D5;TEXT-DECORATION:none;}
A:hover{color:#D5D5D5;TEXT-DECORATION:none; filter: shadow(color=#00ff00, direction=200)}
-->
</style>

i'm assuming that you want it for hover, so the bold part is what i have added.

Love,
Mirna