pointer-events: none;
to the transparent div in Webflow to allow clicks to pass through.pointer-events: auto;
if they need to remain clickable.pointer-events: none;
causes issues.Yes, you can use pointer-events: none; on the transparent div to allow clicks to pass through to the Webflow Slider button underneath. Here's how you can do it:
pointer-events: none;
pointer-events: auto;
to that wrapper.pointer-events: none;
interferes with other interactions, lower the z-index of the transparent div or increase the z-index of the slider controls.z-index: 10
) so they stay interactive.Applying pointer-events: none; to the transparent div lets clicks pass through to the slider button. If needed, adjust z-index or use pointer-events: auto;
selectively to maintain other interactive elements.