codysan 0 Report post Posted January 17, 2011 I wanted to remove the underlines that appear when you hover over a link and I wanted to do it site wide. I assumed that a:hover {text-decoration: none;} would make that happen. But it didn't. Can someone tell me the correct way to do that? The site url is - http://www.lacleansweep.org/ Thank you . . PC Share this post Link to post Share on other sites
Kate 3 Report post Posted January 17, 2011 Hey Philip - That actually is the correct declaration. But, try this instead: a:hover{text-decoration:none !important;} That will override other declarations. Share this post Link to post Share on other sites
codysan 0 Report post Posted January 17, 2011 Thanks Kate . . . PC Share this post Link to post Share on other sites