<select> element in Webflow. -webkit-appearance: none; along with appearance properties in a <style> tag via Page or Site Settings. To remove Safari’s default gel-box styling (rounded corners, inner shadow) on <select> dropdowns, you can use the -webkit-appearance: none; CSS property in Webflow. Here's how to implement it properly:
custom-dropdown) to target it specifically. <select> elements unless intended.
`<style>
.custom-dropdown {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background: transparent;
border: none;
}
</style>`
To remove Safari’s gel-box styling from <select> fields, add -webkit-appearance: none; in a <style> tag targeting your dropdown class. Then, style it manually in Webflow for a fully customized look.