Here is a jsbin that demonstrates the issue and here is the markup:
<div class="row">
<div class="col-sm-4 xs-12">
<strong>UK Postcode</strong>
</div>
<div class="col-sm-4 xs-12">
<strong>Other Field</strong>
</div>
</div>
<div class="row">
<div class="col-sm-3 xs-12">
<input class="form-input"/>
</div>
<div class="col-sm-1 xs-12">
<strong>Or</strong>
</div>
<div class="col-sm-3 xs-12">
<input class="form-input"/>
</div>
</div>
The elements are correctly aligned in all modes except for mobile.
In mobile mode, I want them to stack vertically. However, I'm unsure how to position the other field
label below the Or
label and above the correct input on mobile devices.
Currently, it displays like this in mobile mode: