I have 2 form fields that are 2 input text. One does as a prefix of the name and the other is the name.
What you need is to remove the space between the first input text (the disabled one) and the second one, since the function of these two is that the first one serves as a prefix to the second.
I want to leave something like this:
It's all done with Bootstrap. My question is if there is any way to do it with Bootstrap.
My code:
<div class="row">
<div class="col-xs-3" id="hideDiv">
<div class="form-group">
<input id="prefijoAlmacen" type="text" id="general-text" name="general-text" class="form-control" value="" disabled />
<span class="mensajeErrorNombre"></span>
</div>
</div>
<div class="col-xs-4">
<div class="form-group">
<input id="modalNombre" type="text" id="general-text" name="general-text" class="form-control" value="" />
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
</div>
</div>
I tried to put another div row inside the column, but nothing; I tried to put the 2 inputs in it, but it does not work either ...
Any ideas?
Thank you.