Heres my form:
<div class="row">
<form class="well form-inline span6 offset3">
<select name="data[Number][country]" id="NumberCountry">
<option>Choose a country code:</option>
<option value="+44">+44</option>
<option value="+81">+81</option>
<option value="+1">+1</option>
<option value="+70">+70</option>
</select>
<input type="text" class="input-small span2" placeholder="eg. 7764">
<input type="password" class="input-small span2" placeholder="eg. 123456">
<button class="btn btn-large btn-primary">Activate Your SIM</button>
</form>
</div>
Heres a working example:
http://jsfiddle.net/pickledegg/aJfMx/6/
I've bodged it up using Bootstrap, but I'm trying to get a grasp on how the rows and spans should be used for 'fine tuning' the layout.
I want the button to be centralised and have some space above it. As you can see I've fudged some rows and span classes in there, but can someone show me the 'best practice' way of doing this? It will help me form a clearer picture of how to properly use this framework.