Styling the <select> and <option> in css

Hi @ARQSoft,

I’m guessing you want to get rid of the default select button for the menu. The trick to customizing these is to use display: none; on the select tag. This gets rid of the default arrow and then you can use . select-selected:after to create a custom drop down arrow.

You can find an example of this here.

1 Like