I'm having difficulty aligning my menu dropdown
, the whole form and even the text that should accompany the dropdown
menu is right. Any tips?
Eg:
Result obtained: | dropdown
| Choose an ingredient:
Expected result : Choose an ingredient: | dropdown
|
Code of my menu dropdown
<div class="form-group">Ingredientes:
<SELECT NAME="ingredientes" class="col-md-4 control-label" required="1">
<option Selecione...</option>
<?php
while($dados3 = mysql_fetch_array($q3))
{
?>
<option value="<?=$dados3['id_ingredientes'] ?>">
<?=$dados3['nome'] ?>
</option>
<?php
}
?>
</SELECT>
</div>
Print from the menu: