Elentari
06-03-2003, 09:12 PM
Ok having a little problem here and I don't know how to fix it. I am using an external stylesheet and I want to incorporate a filter on my hover...something like glow maybe (any one of these really) http://www.ssi-developer.net/css/visual-filters.shtml into my stylesheet so my links glow on hover. Anyway, I've tried just adding it but nothing....any help would be useful. Here's my stylesheet.
<style type="text/css">
<!--
}
A:active {
text-decoration:none;
color:#336699;
}
A:link {
text-decoration:none;
color:#336699;
}
A:hover {
text-decoration:none;
color:#F46234;
cursor:crosshair;
}
A:visited {
text-decoration:none;
color:#336699;
}
body {
font-family:tahoma, arial, times new roman;
font-size:10pt;
color:#000000;
text-align:justify;
margin:25px 25px;
background-color:#DDDDDD;
scrollbar-3dlight-color:#F46234;
scrollbar-arrow-color:#DDDDDD;
scrollbar-base-color:#F46234;
scrollbar-track-color:#DDDDDD;
scrollbar-darkshadow-color:#F46234;
scrollbar-face-color:#DDDDDD;
scrollbar-highlight-color:#F46234;
scrollbar-shadow-color:#F46234;
}
.title {
font-family:ashley, lucida sans, arial;
font-size:13px;
color:#000000;
font-weight:bold;
letter-spacing:1;
text-align:center;
font-style:italic;
}
-->
</style>
I did try adding things like this...
filter:glow(color=#FFCC66,strength=8);
but it didn't work anyway.
<style type="text/css">
<!--
}
A:active {
text-decoration:none;
color:#336699;
}
A:link {
text-decoration:none;
color:#336699;
}
A:hover {
text-decoration:none;
color:#F46234;
cursor:crosshair;
}
A:visited {
text-decoration:none;
color:#336699;
}
body {
font-family:tahoma, arial, times new roman;
font-size:10pt;
color:#000000;
text-align:justify;
margin:25px 25px;
background-color:#DDDDDD;
scrollbar-3dlight-color:#F46234;
scrollbar-arrow-color:#DDDDDD;
scrollbar-base-color:#F46234;
scrollbar-track-color:#DDDDDD;
scrollbar-darkshadow-color:#F46234;
scrollbar-face-color:#DDDDDD;
scrollbar-highlight-color:#F46234;
scrollbar-shadow-color:#F46234;
}
.title {
font-family:ashley, lucida sans, arial;
font-size:13px;
color:#000000;
font-weight:bold;
letter-spacing:1;
text-align:center;
font-style:italic;
}
-->
</style>
I did try adding things like this...
filter:glow(color=#FFCC66,strength=8);
but it didn't work anyway.