I've added the following custom code to move just the nuActionHolder to a left vertical position for only the edit form, and change the nuActionButton format to be bigger.
Code: Select all
if (nuFormType() == 'edit') {
nuResize()}
function nuResize() {
var h = window.innerHeight;
$('#nuActionHolder').css({
'width': '100px',
'float': 'left',
'height': h,
'border-right': 'solid',
'border-right-width': 'thin'
});
$('.nuActionButton').css({
'width': '90px',
'height': '45px',
'margin':'5px'
});
$('.nuBackBtnButton.nuActionButton').css({
'width': '90px',
'height': '45px',
'margin':'5px'
});
}
Thanks,
Paul