custom-dropdown
) to your select
element.-webkit-appearance: none
in a <style>
tag via Page or Project Settings to override Safari’s default styling.select
form elements, not Webflow’s standard dropdowns built with divs.To remove Safari’s default "gel-box" styling (rounded corners and shading) from dropdowns in Webflow, you need to disable its native appearance using custom CSS with -webkit-appearance: none
.
custom-dropdown
.Go to Page Settings (for page-level code) or Project Settings > Custom Code (for global code).
In the Before
section, embed a <style>
tag with this CSS:
```html
```
div
, not select
.select
input (like in a Form Block’s select field), then this CSS applies.-webkit-appearance
doesn’t apply since it's not a native form control.select
elements with a custom dropdown menu built using Divs and Interactions, enabling custom styles across all browsers.To remove Safari’s gel-box styling from a form select
element in Webflow, give the element a custom class like custom-dropdown
and use custom CSS with -webkit-appearance: none
via an embedded <style>
block. This technique doesn’t apply to Webflow’s standard Dropdown Widget, which uses divs instead of select inputs.