Skip to content

Instantly share code, notes, and snippets.

@cpaul007
Last active December 20, 2023 14:45
Show Gist options
  • Save cpaul007/ae1a932e9a55ca3a9d4daaa75930e3b7 to your computer and use it in GitHub Desktop.
Save cpaul007/ae1a932e9a55ca3a9d4daaa75930e3b7 to your computer and use it in GitHub Desktop.
Removing the previous button and center align the submit button at last step form
/* .fluent_form_18 is my form class. youe will replace form ID 18 with your form ID */
.fluent_form_18 .fluentform-step:last-child .ff_step_nav_last {
display: none;
}
.fluent_form_18 .fluentform-step:last-child .ff-t-column-2 {
display: table-row;
}
.fluentform .fluent_form_18.ff-form-has-steps .ff_submit_btn_wrapper {
text-align: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment