moosesxoxo
02-09-2005, 01:30 AM
does anyone know the code to strikeout links when the cursor goes over it? and does anyone know the code to blur pictures when the cursor goes over it? thanks in advance!
|
View Full Version : links moosesxoxo 02-09-2005, 01:30 AM does anyone know the code to strikeout links when the cursor goes over it? and does anyone know the code to blur pictures when the cursor goes over it? thanks in advance! Cherchezlafemme 02-09-2005, 01:32 AM wrong forum... it's called CSS, i suggest you check it out on the main site :) moosesxoxo 02-09-2005, 01:34 AM i know its the wrong forum i did that by mistake. thanks for your help! : ) Monkey Bizzle 02-09-2005, 04:39 AM i don't know how much you know about CSS so if this makes no sense, then let us know and we can explain it better... the code for strikeout on hover is this: a:hover {text-decoration: line-through;} it goes in your head section of your page or in your external style sheet if you have one. if you already have some attributes for a:hover, then just add the text-decoration part to the appropriate section. |