I\'d like to be able to target text links in CSS with border-bottom on hover, but have all links that are images not have a border on hover. So:
Try this trick. It works.
a { text-decoration:none; border-bottom:2px solid; } a img { border:none; vertical-align:top; }
Another way - PHP:
$text = preg_replace('#(.*?)#is', "\\3", $text);