Closed. This question is off-topic. It is not currently accepting answers.admin管理员组文章数量:1130349
Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 7 years ago.
Improve this questionI am running a wordpress site with contact form 7. I have signed up to reCaptcha and everything is working fine except all the fields on the form are right aligned but the reCaptcha is aligned to the left.
Is there anyway to align it to the right like the rest of the fields?
Heres a screenshot from my local machine:
Closed. This question is off-topic. It is not currently accepting answers.Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 7 years ago.
Improve this questionI am running a wordpress site with contact form 7. I have signed up to reCaptcha and everything is working fine except all the fields on the form are right aligned but the reCaptcha is aligned to the left.
Is there anyway to align it to the right like the rest of the fields?
Heres a screenshot from my local machine:
Share Improve this question edited Oct 19, 2017 at 12:33 fuxia♦ 107k39 gold badges255 silver badges461 bronze badges asked Oct 19, 2017 at 12:14 Aadil GanieAadil Ganie 131 silver badge3 bronze badges1 Answer
Reset to default 4You can't do that directly inside the CF7 plugin you need to modify the CSS.
Add the following to your theme's style.css file:
.wpcf7-recaptcha > div {
margin: 0 0 15px auto;
}
PLEASE BE NOTED:
If you add the above code, it will take effect to all your recaptcha fields in every forms on your website.
Often times, we would like to only do this to a certain form, this is how you can do it:
First: Add an ID to the recaptcha in Contact Form 7
[recaptcha id:enquiryFormRecaptcha]
Second: Customize your CSS
#enquiryFormRecaptcha > div {
margin: 0 auto 0 auto;
}
Good luck!
Closed. This question is off-topic. It is not currently accepting answers.Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 7 years ago.
Improve this questionI am running a wordpress site with contact form 7. I have signed up to reCaptcha and everything is working fine except all the fields on the form are right aligned but the reCaptcha is aligned to the left.
Is there anyway to align it to the right like the rest of the fields?
Heres a screenshot from my local machine:
Closed. This question is off-topic. It is not currently accepting answers.Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 7 years ago.
Improve this questionI am running a wordpress site with contact form 7. I have signed up to reCaptcha and everything is working fine except all the fields on the form are right aligned but the reCaptcha is aligned to the left.
Is there anyway to align it to the right like the rest of the fields?
Heres a screenshot from my local machine:
Share Improve this question edited Oct 19, 2017 at 12:33 fuxia♦ 107k39 gold badges255 silver badges461 bronze badges asked Oct 19, 2017 at 12:14 Aadil GanieAadil Ganie 131 silver badge3 bronze badges1 Answer
Reset to default 4You can't do that directly inside the CF7 plugin you need to modify the CSS.
Add the following to your theme's style.css file:
.wpcf7-recaptcha > div {
margin: 0 0 15px auto;
}
PLEASE BE NOTED:
If you add the above code, it will take effect to all your recaptcha fields in every forms on your website.
Often times, we would like to only do this to a certain form, this is how you can do it:
First: Add an ID to the recaptcha in Contact Form 7
[recaptcha id:enquiryFormRecaptcha]
Second: Customize your CSS
#enquiryFormRecaptcha > div {
margin: 0 auto 0 auto;
}
Good luck!
本文标签: captchaAlign reCaptcha to right on Contact Form 7
版权声明:本文标题:captcha - Align reCaptcha to right on Contact Form 7 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749227277a2335761.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论