How to align the recaptcha on contact form
Actually i found the solution and i want to share with who are same like me beginners ,
The contact form was on the left and the recaptcha was shown little bit on the right and looks strange on the contact form, to fix it check the following:
Go to Stylesheet (style.css)
then look for recaptcha
and change margin-left: from 140px to 0
/* reCaptcha styles */
.g-recaptcha {
display: inline-block;
margin-left: 140px;
}
change it to
/* reCaptcha styles */
.g-recaptcha {
display: inline-block;
margin-left: 0;
}