Would like to add an icon to a custom-styled select to make it more clear that it's a dropdown menu:
// load fontawesome from header with <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<select name="category">
<option value="0">Category <i class="fa-sort-asc fa"></i></option>
</select>
I can get the icon to show up elsewhere in the template but not within the selection/option. I assume this just isn't possible?