Review and submit page questions

We have the ‘review and submit’ page working on our site via the functions.php file and it’s working fine. We need to change the styling a bit though, from two perspectives.

  1. is there any way to move the submit button from the bottom of the page to the top of the page?
  2. how do I add css or styling so that it impacts only this page? Is there a class I can add to the custom css, site-wide? or something else? I looked at the source code and it’snot clear to me how to do that.

TIA.

Hi Glenn,

  1. There’s not any Gravity Forms setting, feature or filter to do so. Your could try something using regular Javascript code, nothing specific to Gravity Forms, just the same you would use to alter the markup for any other form. Maybe using jQuery’s insertAfter() function to move the whole footer container, not only the submit button: .insertAfter() | jQuery API Documentation

  2. The content generated by the gform_review_page is wrapped using a div that has the class gform_page gform_review_page

1 Like