I have the following select in a row of stuff that I'd like to better align/space out onto the right side:
I.e. the select next to "License Quantity". I would like to move the number more on the right, as would look more visually appropriate.
Code below:
<div class="field-group">
<div style="text-align: center;" class="field field--with-dropdown clearfix">
<label for="field-qty">License Quantity</label>
<select style="text-align: center; margin-left: 25em" id="field-qty-num" onchange="qty_change()">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
</select>
</div>
<div class="field">
<label for="field-phone">User Training Manual</label>
<input id="field-phone" type="text" class="form-control" style="text-align: center;" placeholder="Included for free!" readonly />
</div>
<div class="field">
<label for="field-phone">User Training Videos</label>
<input id="field-phone" type="text" class="form-control" style="text-align: center;" placeholder="Included for free!" readonly />
</div>
<div class="field">
<label for="field-phone">6 Months Tech Support</label>
<input id="field-phone" type="text" style="text-align: center;" class="form-control" placeholder="Included for free!" readonly />
</div>
</div>