Copy link to clipboard
Copied
Hello,
I create a link by using a hotspot, but when I click on the linked image you can see the blue hotspot rectangle. How do I make it invisible?
Thanks in advance.
Giovanni
css would resolve your issue, if you don't want a global fix target the specific element with a class or ID - post a link to your page for more help 🙂
a:focus, a:active {
outline: none;
}
Copy link to clipboard
Copied
css would resolve your issue, if you don't want a global fix target the specific element with a class or ID - post a link to your page for more help 🙂
a:focus, a:active {
outline: none;
}
Copy link to clipboard
Copied
Keep in mind that the blue outline on focus & active links is created by browsers for usability reasons. It shows people where they are on the page. Removing the outline with CSS code makes your site less user friendly.