If you mean that the Next 'button' (it's really a span) is wrapped to the next line, I'd try changing this line in the script:
Code:
var $paginatediv=$('<div class="formpaginate" style="overflow:hidden;"><span class="prev" style="float:left">Back</span> <span class="status">Step 1 of </span> <span class="next" style="float:right">Next</span></div>')
to:
Code:
var $paginatediv=$('<div class="formpaginate" style="overflow:hidden;"><span class="next" style="float:right">Next</span> <span class="status">Step 1 of </span> <span class="prev" style="float:left">Back</span></div>')
What it does is reverse the order of the two floated spans (Next and Back). Though counterintuitive, because they are floated this shouldn't change the order in which they appear on the page. And doing it this way has a very good chance at fixing the issue. It does in ordinary markup, so should here. Other browsers that already do this right shouldn't be affected.
Bookmarks