Adjust auto scroll height

I have a multi-step form here: TEST Registration Form - Investor Summit™.

When I go to the next page, it auto-scrolls to the top of the form. I’ve tried adjusting the anchor point so it’s not right at the top of the page. I’d like to add some padding on the top, so it scrolls with some gap at the top. What is the CSS to adjust this? or how would I accomplish this?

Thanks!

I got this to work by adding this code to my functions.php. I adjusted the distance from 20 to 480 to fit with my design.

add_filter( 'gform_confirmation_anchor', function() {
    return 480;
	} );

See:
gform_confirmation_anchor - Gravity Forms Documentation

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.