Is there a way to disable a specific hotspot list on a mobile device for small (mobile phone) screen sizes?
My client loves the hotspot on desktop and iPad, but on one hotspot image, the mobile list results are confusing. Is it possible to disable the hotspot list on mobile phone screen sizes?
Hey Wildwood!
There is an option when editing the hotspot image element for disabling that.
Or if you want to use CSS then you can do this.
.av-hotspot-fallback-tooltip { display: none !important; }
If you only want to do it on one page then drag a codeblock element over to the page and add this.
<style type = "text/css">
.av-hotspot-fallback-tooltip { display: none !important; }
</style>
Cheers!
Elliott