View Full Version : different css codes


Jrfan888
07-09-2003, 02:43 AM
I am using the blur filter in my css code (on hover) for my navigation menu. But i have a table in that same page with a bunch of links on it, and i dont want it to have the blur effect. I tried adding the link portion of the CSS code before the table, but like i expected, i didnt work. Im kinna stuck on what to do since i dont know CSS very well...
Any suggestions?

kittycat
07-09-2003, 03:07 AM
Add this to CSS

a.other:link { attributes here }
and so on for visited, active, hover....

Then to the links add class="other", eg <a href="link.htm" class="other">

You can also change 'other' to something else.

Jrfan888
07-09-2003, 05:12 AM
Thanks...:)
it does work with regular links...but i am using this script from here (http://www.dynamicdrive.com/dynamicindex5/popinfo.htm) , and it doesnt work..?

Jrfan888
07-10-2003, 04:52 AM
ok, nevermind...i put a "filter:none;" in the css and it worked! :)