I've been battling with trying to place a font-awesome icon into a select option (drop down menu). I have tried the solution here that was posted on this site. However, this places the font-awesome icon next to the label and not within the select option box.
I've also tried putting in the unicode directly into the html option tag... however, once clicked on that down arrow it turns into a question mark. (Also, I cannot use bootstrap with this project)
Please help!
HTML:
<div class="modal-form stack col75">
<label for="game">Game:</label>
<select class="form-control easy-drop-down" id="modal-game-options">
<option selected disabled>Please Select a Show</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>
</div>
CSS:
select {
border-radius: 0;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
-webkit-appearance: none;
background-color: white;
padding-left: 20px;
content: "";
}
Here are some snapshots
Current: without-arrow
Goal: with-arrow