Use the code below to move the “Submit” button on your forms to the bottom of the app page..
1) Log into your App Manager and select your app.
2) Click Colors from the left-hand-side of the screen (or the middle of the screen).
3) Scroll down until you get to the SCSS box and paste the following code:
/*** BEGIN: MOVE FORMS SUBMIT BUTTON TO BOTTOM OF PAGE ***/
button.button-positive.button-positive-custom.ng-binding.button-full {
position:relative;
min-height: 70px !important;
margin-top:50px;
}
button.button-positive.button-positive-custom.ng-binding.button-full.activated {
position:relative;
min-height: 70px !important;
margin-top:50px;
}
/*** END: MOVE FORMS SUBMIT BUTTON TO BOTTOM OF PAGE ***/
4) Click Save.
Important Note:If you already have code in the advanced SCSS box, do not remove it. Start a new line “after” the last character in the box, then paste the above code.