Hi Sorry for the newbie question.
I need to build a form with elements of: 1. Area code - selection from the pre-defined list of area codes 2. Phone number - "free text" to enter 7-digit number My problem (see attached) is the SELECT and the INPUT are not aligned horizontally: SELECT is higher than input. The code looks like: <form method="POST" action="#" onsubmit="return validateForm()"> <fieldset> <input id="hidden_product_id" type="hidden" name="productId" value=""/ > <div class="controls controls-row"> <select name="phone_prefix" style="width: auto" > <option>050</option> <option>051</option> <option>052</option> </select> <input id="pnone_7_digits" name="phone" value="" style="width: 60px" /> </div> </fieldset> <button type="submit" class="btn btn-success">SEND</button> </form> Thanks for any hint on how the controls can be aligned right. Max -- You received this message because you are subscribed to the Google Groups "twitter-bootstrap" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
<<attachment: form_controls.PNG>>
