Double question: 1. Is it possible to change the alignment of the next and previous buttons that are autogenerated in multipage forms? 2. Is it possible to on the final page align the prev button on the same line as the final submit button?
Some updates are coming in the next few days that may change these answers, but for the moment:
1. Yes, these are completely controlled by CSS styling.
2. This requires a bit of javascript. Add this to your custom code block.
<script> function initalize(){ var a = base2.DOM.Element.querySelector(document,"div[class='actions']").children; var b = base2.DOM.Element.querySelectorAll(document,'.wfPagingButtons'); var buttonLoc = b.item(b.length-1); buttonLoc.className += " actions"; for(i=0;i<a.length;i++) buttonLoc.appendChild(a[i]); }