Support Forum

 
You must be logged in to post
Search Forums:


 






Wildcard Usage:
*    matches any number of characters
%    matches exactly one character

Editing the "Submit" button

Information/How to
No Tags
UserPost

8:44 am
January 28, 2011


Burst2flame

1

I need it so the sumbit button is changed to a paypal "buy now" button.  And pressing on that button both submits the form and redirects you to paypal.  Is this possible?

10:10 pm
January 31, 2011


Steph

2

Small PayPal plugin sent. Hopefully you have some comfort with PHP?

To change the submit button for only on form, you will need to add some CSS to your theme style.css. It would look something like this:

#frm_form_5_container .submit input[type="submit"]{

background: url('image/url/here');

}

 

Be sure to replace the 5 in frm_form_5_container with the ID of your form. There will be more CSS needed to override the styling in your Formidable styling settings.

Information/How to
No Tags