In my test case, I'm up to aligning in columns an input with its label and a hyperlink. The problem is that hyperlink gets aligned to label, and not to input:
The code is as follows:
<div class="row">
<div class="form-group col-xs-4">
<label class="form__label" for="form__field__recipientId">Código
beneficiario </label> <input class="form-control input-md col-xs-8"
id="form__field__recipientId" name="form__field__recipientId"
type="text" placeholder="Introduce ordenante">
</div>
<div class="form-group col-xs-4">
<a class="form__side__hyperlink" href="">Buscar beneficiario</a>
</div>
</div>
I have tried many things, mainly form-inlining the elements, but I don't think I'm doing it correctly since I end up messing things up.
