The form Save and Continue link – applies just to form ID #1 and save link in the first page of a multipage form: body #gform_wrapper_1 .gform_footer a#gform_save_1_2_link {border: 1px solid red}
Can I add {visibility:hidden} to a similar element to achieve this? How would I edit it to make it only apply on page 1, and all form IDs? Any guidance would be appreciated.
Hi James. When targeting like that, you would not be able to apply to page 1 of all forms. You would need to add additional CSS selectors, and apply the same rules. You would need to manually maintain this in the CSS. It would look something like this:
body .gform_wrapper .gform_footer a#gform_save_1_2_link, /* form 1 */
body .gform_wrapper .gform_footer a#gform_save_19_2_link, /* form 19 */
body .gform_wrapper .gform_footer a#gform_save_74_2_link { /* form 74 */
visibility: hidden!important;
}