I have most of my html text links defined as:
a:hover {text-decoration:none; border-bottom:2px dotted #DB8D41}
But I also have images at http://communitychessclub.com/rabren/ which are links. I do not want the "border-bottom:2px dotted #DB8D41" to show under these images.
It is obvious that this below will not work:
a:hover img {border:none}
img, img:active { border: none }
Anybody have a solution?