How do I justify the Submit button to the right? [RESOLVED]

How do I justify the Submit button to the right? Seems like an easy ask, but the CSS answers I’ve found don’t scale well to different screen sizes. For example:

#gform_submit_button_1 {
    position: relative;
    left: 90% !important;
}

Try the following. Should work for both paginated and non-paginated forms…

body .gform_wrapper .gform_footer {
    justify-content: flex-end;
}
body .gform_wrapper .gform_page_footer {
    text-align: right;
}
1 Like

Thank you that worked!

2 Likes