To prevent clicks or hover events on the top layer of a multi-layered hero section in Webflow, while still keeping it visible, you can use pointer-events: none.
With the element selected, go to the Style panel.
Scroll to the "Layout" section.
Click the “+” icon next to ‘Custom CSS’ properties (if needed).
Add this style:
pointer-events: none
Alternatively, in the Style panel, go to the “Custom” section at the bottom and type:
Property: pointer-events
Value: none
Set pointer-events: none on your top hero layer to make it non-clickable and ignore all hover interactions, while still keeping it visually present above underlying content.