Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Hotspots

New Here ,
Feb 23, 2020 Feb 23, 2020

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

TOPICS
How to
697
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Guide , Feb 23, 2020 Feb 23, 2020

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;
}

 

Translate
Guide ,
Feb 23, 2020 Feb 23, 2020

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;
}

 

Paul-M - Community Expert
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 23, 2020 Feb 23, 2020
LATEST

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. 

 

Nancy O'Shea— Product User, Community Expert & Moderator
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines