I recently implemented Bootstrap on my website.
I encountered an issue with a form in the footer
section where the select options are extending out of the page boundaries.
<footer>
<form role="form" method="GET">
<div style="float: right">
<select name="lang" class="form-control" style="height: auto; font-size: 15px; padding: 1px 5px" onchange="this.form.submit()">
<option value="<?php echo $local ?>"><?php echo $localtxt ?></option>
<option value="<?php echo $local2 ?>"><?php echo $localtxt2 ?></option>
</select>
</div>
</form>
</footer>
How can I reposition the item to display at the top rather than the bottom?
Any advice would be greatly appreciated. Thank you!