how to add a blank line contact form 7

16,944

Solution 1

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

Solution 2

You can try this:

[recaptcha]<br/>

[submit "Send"]
Share:
16,944
bananagram
Author by

bananagram

Updated on August 06, 2022

Comments

  • bananagram
    bananagram almost 2 years

    I'm new to 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.

    screenshot of recaptcha too close to send button

    Thanks in advance!