Always hide hot spot shapes | XM Community
Skip to main content
Question

Always hide hot spot shapes

  • May 19, 2022
  • 1 reply
  • 26 views

Hi,
I'm trying to design a task where participants can cross out/mark the letters from the image by selecting it. So I used the hot spot function and tried to map each letter with a hot spot. But currently, it is slowing down the process because there are too many hot spots on a single page. So I'm wondering if there is anyway to always hide the hot spot shapes, so that the participants won't be able to see the hot spots and will assume that all letters are markable rather than scanning the text with their mouse to simply click whichever letters are clickable if I decided to only use hot spots on letters I want them to select.

1 reply

Tom_1842
Level 8 ●●●●●●●●
Forum|alt.badge.img+28
  • Level 8 ●●●●●●●●
  • September 21, 2022

Hi there, if you still need, I was able to put this in place using an Interaction Type of "On / Off" and the below CSS:
div.Inner.BorderColor.OnOff > div > fieldset > div > div > div > svg > path {
fill-opacity: 0 !important;
stroke-opacity: 0 !important;
cursor: default !important;
}