1
The problem is that I have a button that eventually expands down a field select
and should stand on the right side of it. So, instead of looking like this:
Him looks like this:
Code
The code of the help button in question is:
<a href="#" class="icone-ajuda" title="Ajuda" data-toggle="modal" data-target="#validaPerguntaPessoas"></a>
The code section you belong to is:
<div id="dadosProposta" class="collapse in">
<fieldset class="com-borda">
<div class="form-group row">
<div class="col-xs-2">
<label class="small" for="Numero">Número</label>
<input type="text" class="form-control text-center" value="445878545" readonly id="Numero"/>
</div>
<div class="col-xs-2">
<label class="small" for="TipoDeProposta">Data Vencimento da Proposta</label>
<input type="text" class="form-control text-center" value="18/02/2019" readonly id="Numero"/>
</div>
<div class="col-xs-2">
<label class="small" for="ISSQN">Responsável ISSQN</label>
<select class="form-control" id="ISSQN">
<option> </option>
</select>
<a href="#" class="icone-ajuda" title="Ajuda" data-toggle="modal" data-target="#validaPerguntaPessoas"></a>
</div>
<div class="col-xs-2">
<label class="small" for="ISSQN">Responsável ISSQN</label>
<select class="form-control" id="ISSQN"><option> </option></select>
</div>
</div>
<div class="form-group row">
<div class="col-xs-3">
<label class="small" for="TipoDeProposta">Nome a ser impresso na carteirinha</label>
<input type="text" class="form-control" id="TipoDeProposta"/>
</div>
<div class="col-xs-4">
<label class="small" for="TipoDeProposta">A natureza jurídica da sua empresa é MEI ou Eireli?</label>
<select class="form-control" id="TributoFederal">
<option>Selecione</option>
<option>MEI</option>
<option>Eireli</option>
</select>
</div>
</div>
</fieldset>
His response helped and the button went to the side as I needed, but the help button was aligned with the top of the field and not in the middle. : ( Is there any other way to stay aligned in the middle as in the example I gave?
– Layla Comparin
@Laylacomparin made a change in the code below I think will solve your new problem!
– Lodi
@Laylacomparin I made a small adjustment to align the items in the center.
– fabioxd20