appearance: none and a background image to replace the default arrow icon. Yes, you can use custom CSS in Webflow to change the default arrow icon in a form select dropdown to a custom icon, though with some limitations depending on the browser.
appearance: none.
custom-select.
<head> or before </body>).<style> tag:
```css
<style>
.custom-select {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
background: url('https://yourdomain.com/path-to-custom-icon.svg') no-repeat right 0.75rem center;
background-size: 1rem;
padding-right: 2rem; / Optional: Leaves space for the icon /
}
</style>
```
url() with your actual image URL (you can upload the asset to Webflow and copy the hosted link).
appearance: none and position your icon over it.
You can use custom CSS with the appearance: none style and a background image to replace the select arrow icon in Webflow. This works reliably in some browsers but may not fully override the native UI in others without more complex solutions.