1
I have a reCaptcha in my form, but I’m not able to center it or leave it in the same size as the fields.
<div class="container-fluid">
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div class="col-sm-6">
...
</div>
<div class="col-sm-6">
<form accept-charset="UTF-8" method="post" action="">
...
<div class="form-group">
<label>Cargo*:</label>
<input type="text" class="form-control input-lg" required>
</div>
<div class="form-group">
<div class="g-recaptcha" data-sitekey="minha_key"></div>
</div>
</form>
</div>
</div>
</div>
</div>
How can I fix this?
Are you using bootstrap? Put a little more of your HTML there to make it easier to understand.
– Ricardo
I am @Ricardo. I put another piece of code.
– Raylan Soares