I am having problems with select with custom font icon, please look at this screenshot how it looks
Problem here is that i cant open options dropdow on click that arrow because its on select and if i add z-index: -1 arrow goes below select, but i need arrow on top of that select.
Here is my current code.
HTML
<li class="dropdown">
<select name="font" id="font" placeholder="">
<option value="Arial">Arial</option>
<option value="Times New Roman">Times New Roman</option>
<option value="Georgia">Georgia</option>
</select>
</li>
CSS/Sass
select {
@include border(0px);
padding: 7px 0;
position: relative;
top: -2px;
outline: none;
appearance: none;
-webkit-appearance: none;
}
&.dropdown {
&:after {
content: "\e61d";
font-family: 'icomoon';
color: black;
@include abs-pos(0, 0);
}
}