Home / Forums / WoodMart support forum / Hotspot Size on Mobile Devices
Home › Forums › WoodMart support forum › Hotspot Size on Mobile Devices
Hotspot Size on Mobile Devices
- This topic has 5 replies, 2 voices, and was last updated 3 weeks, 2 days ago by
Aizaz Imtiaz Awan.
-
AuthorPosts
-
August 26, 2026 at 10:39 am #727665
agentiaclickclickParticipantHi,
I’ve added some hotspots to an image, but on mobile devices they appear too large and cover the product, making it difficult to see.
Could you please let me know where I can adjust the hotspot size specifically for mobile devices? I would like to make the hotspots smaller on mobile while keeping the current size on desktop.
Attachments:
You must be logged in to view attached files.August 26, 2026 at 1:12 pm #727673Hello,
Could you please confirm whether you would like to reduce the hotspot icon/dot size on mobile devices or the product/content popup size that appears when hovering/clicking the hotspot? This will help us guide you to the correct setting.
Best Regards
August 27, 2026 at 12:30 pm #727714
agentiaclickclickParticipantI would like to reduce the hotspot icon/dot size(green color) on mobile devices. Or maybe is any option to remove the color?
August 27, 2026 at 4:12 pm #727725Hello,
Reduce Hotspot Dot Size. Try to add the following custom css code in Theme Settings > Custom CSS > Custom CSS for mobile:
/* Reduce overall container size & adjust centering offset */ .wd-image-hotspot { width: 14px !important; height: 14px !important; margin-top: -7px !important; margin-left: -7px !important; } /* Adjust inner dot indicator */ .hotspot-icon-default .hotspot-btn:after { top: 5px !important; left: 5px !important; width: 4px !important; height: 4px !important; }Change or Remove Hotspot Dot Color, Try to add the following custom css code in Theme Settings > Custom CSS > Custom CSS for mobile:
/* Remove background color / make transparent */ .hotspot-icon-default .hotspot-btn { background-color: transparent !important; box-shadow: none !important; } /* Hide surrounding pulse sonar animation on mobile */ .hotspot-sonar { display: none !important; }Best Regards,
August 27, 2026 at 11:21 pm #727737
agentiaclickclickParticipantAnd a CSS to reduce the window size with the product on dot?
Attachments:
You must be logged in to view attached files.August 28, 2026 at 1:16 pm #727751Hello,
Try to use the following custom css code in Theme Settings > Custom CSS > Custom CSS for mobile.
/* Reduce overall popup window width */ .hotspot-content { width: 180px !important; /* Default is 250px */ padding: 10px !important; /* Reduces inner spacing */ } /* Reduce product image size inside the popup */ .hotspot-content img { max-width: 100px !important; margin: 0 auto !important; } /* Reduce title and price font sizes */ .hotspot-content .wd-entities-title { font-size: 13px !important; } /* Make Add to Cart button more compact */ .hotspot-content :is(.btn, .add_to_cart_button) { padding: 4px 10px !important; min-height: 28px !important; font-size: 11px !important; }Best Regards
-
AuthorPosts
- You must be logged in to create new topics. Login / Register