pointer-events: none
to the transparent div using a custom class and embed code or Webflow’s style system.pointer-events: none
is maintained across all responsive breakpoints.You're likely trying to click elements underneath a transparent or non-interactive div, but it's blocking pointer events. In Webflow, this can be solved by adjusting the div’s behavior using CSS properties.
pointer-events: none
on the Transparent DivSelect the transparent div in Webflow's Designer.
In the Style panel, scroll to the Custom CSS properties section under the selector.
Add custom CSS using an Embed component or directly in Project Settings → Custom Code:
.your-div-class { pointer-events: none;}
Alternatively, set this using Webflow’s built-in style system:
Give the div a custom class (e.g., transparent-overlay
).
Add a small custom embed code block (add inside the page or in the
):<style>.transparent-overlay { pointer-events: none; }</style>
pointer-events: none
.display
or opacity
and pointer-events
.pointer-events: none
if it's reused.To click through transparent divs in Webflow, apply pointer-events: none
to that div. This tells the browser to ignore it during mouse/touch events, allowing you to interact with elements underneath.