I want to hide the down arrow symbol in the @Html.DropDownList. How to override the default dropdownlist style.
Please see the image below.

You can use css to set custom apperiance to your dropdown:
.customDropDown { -webkit-appearance: none; -moz-appearance: none;
// add background image what you like
}
And add this class to your dropdown :
@Html.DropDownList("DropDownID", String.Empty, new {@class="customDropDown "} )
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With