I am seeking a solution to hide the default arrow of the HTML select list and instead add a custom image (arrow) to the list.
https://i.sstatic.net/HF7vO.png
.form-inline select {
margin: 10px 35px 15px 0px;
background-color: #fff;
font-size: 30px;
width: 80px;
color: #000;
background-image: url("https://cdn2.iconfinder.com/data/icons/ios-7-icons/50/down4-512.png") center bottom no-repeat;
cursor: pointer;
display: block;
outline: none;
-webkit-appearance: none;
appearance: none;
border: none !important;
justify-content:center;
align-items:center;
text-align:center;
}
These are my current styles. The arrow is not displaying as I intended. Any assistance is appreciated.