I have all the links on my page being underlined when the mouse rolls over them, like such...
body a:link {color : #7800FF; text-decoration : none}
body a:visited {color : #7800FF; text-decoration : none}
body a:hover {color : #7800FF; text-decoration : underline}
body a:active {color : #7800FF; text-decoration : none}
I want to within class "m010o" to disable the underlines. Pretty simple, but I can't get it to work. I've tried many different variants of this to no avail:
body .m010o a:link {text-decoration : none}
body .m010o a:visited {text-decoration : none}
body .m010o a:hover {text-decoration : none}
body .m010o a:active {text-decoration : none}
Does anyone know what's WRONG with this??? Thanks to anyone that can help out!
body a:link {color : #7800FF; text-decoration : none}
body a:visited {color : #7800FF; text-decoration : none}
body a:hover {color : #7800FF; text-decoration : underline}
body a:active {color : #7800FF; text-decoration : none}
I want to within class "m010o" to disable the underlines. Pretty simple, but I can't get it to work. I've tried many different variants of this to no avail:
body .m010o a:link {text-decoration : none}
body .m010o a:visited {text-decoration : none}
body .m010o a:hover {text-decoration : none}
body .m010o a:active {text-decoration : none}
Does anyone know what's WRONG with this??? Thanks to anyone that can help out!