View Full Version : css hates me too


peacefulglop
08-23-2003, 04:59 AM
As soon as I get something right in my css codes, something else goes wrong.>:-(

The A:link part isn't working, but all the others are working fine.:-(
What is wrong?:-):-(:-(:-)


A:link {color:#99CCFF;text-decoration:none;font-weight:normal}
A:visited {color:#99CCFF;text-decoration:none;font-weight:bold;filter:shadow(color=blue,direction=235 ,strength=2);height:1px;}
A:hover {color:#99CCFF;text-decoration:none;font-weight:bold;filter:blur(add="0",direction="180",strength="2");height:0px; background-color:#99CCFF;
cursor:crosshair}

Alcy
08-23-2003, 05:06 AM
Is it a separated stylesheet? If so, you forgot the <style> tags. But it works fine for me.

<style type="text/css">
A:link {color:#99CCFF;text-decoration:none;font-weight:normal}
A:visited {color:#99CCFF; text-decoration:none; font-weight:bold; filter:shadow(color=blue, direction=235, strength=2); height:1px;}
A:hover {color:#99CCFF; text-decoration:none; font-weight:bold; filter:blur(add="0",direction="180",strength="2"); height:0px; background-color:#99CCFF; cursor:crosshair}
</style>

pb&j
08-23-2003, 09:29 AM
Originally posted by peacefulglop
A:link {color:#99CCFF;text-decoration:none;font-weight:normal}
A:visited {color:#99CCFF;text-decoration:none;font-weight:bold;filter:shadow(color=blue,direction=235 ,strength=2);height:1px;}
A:hover {color:#99CCFF;text-decoration:none;font-weight:bold;filter:blur(add="0",direction="180",strength="2");height:0px; background-color:#99CCFF;
cursor:crosshair}

did the forum here add a space between the FONT and - and WIEGHT or is that your coding error in two spots?

idiot
08-23-2003, 05:34 PM
it should be "font-weight" not "font -weight" :D