1
I have a website based on a template bootstrap, on one of the pages I added a button and as much as I gave the command to be aligned to the right, it is always left and misaligned in relation to the form.
<div class="row">
<div class="col-lg-4">
<fieldset class="form-group">
<label>Produto:</label>
<select class="form-control form-control-line">
<option>-- Selecione --</option>
<option>Nome do Produto A</option>
<option>Nome do Produto B</option>
</select>
</fieldset></div>
<div class="col-lg-4">
<fieldset class="form-group">
<label>Ocultar afiliados sem vendas</label>
<select class="form-control form-control-line">
<option>-- Selecione --</option>
<option>Sim</option>
<option>Não</option>
</select>
</fieldset></div>
<div class="col-lg-4">
<label>Classificar por::</label>
<select class="form-control form-control-line">
<option>-- Selecione --</option>
<option>TOP Afiliados</option>
<option>Afiliados mais antigos</option>Novos Afiliadoss
<option>Afiliados com mais tráfego</option>
</select>
</div>
<button type="button" class="btn">Filtrar</button>
</div>
you are used col-lg-4 for each select, change to col-lg-3, included the button, so you subdivide the grid correctly.
– Getulio Rafael Ferreira
Thank you very much, Getulio!
– Igor Rosa