I'm new to wordpress and I am using Contact Form 7
for a form on the website. At the bottom of the form, I've added recaptcha and then the send button. I want to add a SPACE between the end of recaptcha and the form.
What code should I add there? The code looks like this.
[recaptcha]
[submit "Send"]
And the screenshot looks like this.
Thanks in advance!
As Fralec_ pointed out, you can use a line break <br />
between the shortcodes to nudge the "Send" button down:
[recaptcha]
<br />
[submit "Send"]
Alternatively, if you want more control over the spacing, I would suggest wrapping the "Send" button inside a <div>
with inline styling applied to it (change the 20px
value accordingly), like this:
[recaptcha]
<div style="margin-top: 20px;">
[submit "Send"]
</div>
Resources
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With