Forcing a Line Break when using Side by Side Fields - MKB0135 Follow
When using the new Side by Side fields feature with EzMerge you may run into an instance where you would like to force a line break.
To do so create a script field on your Order form and add this piece of code to that field.
Replace the FORMEZMERGENAME with the name of the EzMerge power field and replace LASTEZMERGEFIELD with the name of the last field on a group.
<script>
$(document).ready(function() {
$('#row_udf_FORMEZMERGENAME\\:LASTEZMERGEFIELD').removeClass('floatleft');
});
</script>
To do this on OrderForm fields you can just add a blank HTML field to the form to indicate the linebreak.