I'm using Simple Dialog 2:I have the dialog box below:\[code\]$('<div>').simpledialog2({ mode: 'button', themeHeader: 'b', headerText: 'Confirm', headerClose: true, buttonPrompt: message, buttons : { 'OK': { click: function () { $.mobile.changePage(url, {changeHash: false}); } }, 'Cancel': { click: function () { }, icon: "delete", theme: "c" } }})\[/code\]Screenshot:
I want to \[code\]text-align\[/code\] the message to left and have some space from left and right side of the button. How can I achieve it?Thanks.