On my website is an input box where the user inputs date and time and a select box where the user selects how they wish to pay. In safari on iPad the selection boxes are opening like this:
and
But I would like for the input / select box to open below instead of above.
I have attached my code below:
HTML
<select id="pay-options" class="form-default">
<option> Pay By Card </option>
<option> Pay By Cash </option>
<option> Account </option>
</select>
CSS
input.form-default{
margin-bottom: 0px !important;
-webkit-appearance: none;
}