On my web site, I have the following CSS:
a:hover{color:red;border-bottom:1px solid}
This displays a red underline on text links when hovered, which is desired.
However, this also displays a red underline on image links when hovered, which is NOT desired.
I only want to display the red underline on text links when hovered but not image links when hovered.
Any ideas how I could accomplish this with CSS?