I am selecting account names using a Smart Select for entry into a form, and I would like to left justify the selection. How is this done?
My HTML:
<li><a href="#"
class="item-link smart-select"
data-open-in = "picker"
data-virtual-list = "true"
data-searchbar ="true"
data-searchbar-placeholder="Search accounts"
>
<select id="accounts" name="Accounts">
<option value=""></option>
<!-- javascript smart select items go here -->
</select>
<div class="item-content">
<div class="item-inner">
<div class="item-title">Patron</div>
</div>
</div></a>
</li>