I am trying to remove the default Bootstrap arrow and insert a new image in its place. I was successful in removing the arrow, but I have 2 other problems.
I don't know:
how to insert a new image in the select tag.
why the css below does not remove the arrow in ie11?
My code can be found here: my jsfiddle: https://jsfiddle.net/n4Lob0t1/
html:
<div class="form-group">
<label for="DevelopmentTool">Development Tool</label>
<form >
<select class="form-control">
<option></option>
</select>
</form>
</div>
css:
select.form-control {
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
}