Stop underlining image links

By definition it isn’t really hyperlinked image. It is hyperlink tag a that contains image tag img. Most probably it is a link that is really underlined, image is just inside it.

You need to create new CSS rule that matches your link with image and specifies no underline (it could also be border-bottom property by the way, some recommend it over underline for better typography looks).

If possible please give link to the site. CSS in theory is even worse than PHP in theory. 🙂

I assume it’s about twitter image at top of sidebar? Try this:

.textwidget a, .textwidget a:hover { border-bottom: none; }

But this will affect all text widgets. It is probably better to assign individual class to link like

<a href="http://thunderror.com/" class="twitter-link">

and style it.