@oxbir This is likely happening because of how native selects work on mobile browsers. In order to make this work, you'll need to create a custom dropdown component, like a div, write it out with javascript to be clickable, etc.
Nov 25, 2020
8
Level 10
How to add font awesome to select option in mobile?
I want to add symbols to my selected list. I put the text in the header. When I tried to use the icon in the selected menu, it did not work on mobile. But it works perfectly outside the selection menu. Is it possible to place the icon in the menu select option or is it simply impossible to do? How can I do this?
In Computer
In mobile
html
<link rel="stylesheet" href="themes/fontawesome/css/all.min.css">
<select class="form-control" id="reading_skill" name="reading_skill[]">
<option value="1">    </option>
<option value="2">    </option>
<option value="3">    </option>
<option value="4">    </option>
<option value="5">    </option>
</select>
css
select#listening_skill, select#writing_skill, select#reading_skill, select#level {
font-family: 'FontAwesome';
/*content: '';*/
font-weight: 900;
}
Please or to participate in this conversation.

