Is it possible to hide href title?

css, html, slimbox

Solution

Supposing you are using an image tag in the a tag, you can just use an alternative title for the image (even a space) and that will overwrite the title of the link when you hover over it.

Problem

``` <a href="link.html" title="Titletext"> ``` ...is the code. I need to use the `title` attribute because of slimbox, but I want to hide the title-text that shows up when hovering the mouse over the link. Any ideas?

Original source

Related problems