Follow these steps to remove the default shadow hover effect on a forms submit button.
The CSS Code:
button.forminator-button.forminator-button-submit {
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
}
Forminator has a “Page Break” module that can be inserted into a form to break form content into seperate “page” steps.
Use the code below to remove the shadow on “Back” and “next” buttons that appear on form break screens.
The CSS Code:
button.forminator-button.forminator-button-submit, button.forminator-button.forminator-button-next,
button.forminator-button.forminator-button-back {
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
}
Enjoy!
Each issue features actionable tips that make your website better. Subscribe now.