PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Adding Text next to Send Button Form

  1. Hi dear,
    is there any way to add text (in the admin panel or using html) next to the sending button in the .gform_footer?

    Thanks in advance for your support!

    P.

    Posted 12 years ago on Friday June 10, 2011 | Permalink
  2. There isn't any built-in way to add extra content to the footer but you could add a HTML block element at the very end of your form, add your content there then use CSS to absolutely position the content near the submit button in the footer.

    Here's an example..you would just replace teh "field_91_4" with the actual ID of the list item < li> that contains the HTML block with your content

    [css]
    body .gform_wrapper li#field_91_4 {
        position: absolute;
        left: 100px;
        width: 520px;
    }

    screenshot: http://grab.by/aklI

    Posted 12 years ago on Friday June 10, 2011 | Permalink