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.
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.
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