Hey there, I have an ASP dropdown control that I'm trying to style with CSS. I've applied this class:
select {
padding: 1px;
margin: 0;
background: #f8f8f8;
color: #888;
border-style: ridge;
outline: none;
display: inline-block;
background-image: url("Images/downarrow.png");
appearance: none;
cursor: pointer;
}
However, the issue I'm facing is that in IE 8+, the dropdown image isn't changing at all. Does anyone know of a solution for this problem?