jquery-confirm change translation property

230 Views Asked by At

I'm using jquery-confirm 3.2.0 for confirmation box. Confirm box is appearing at center of the screen. How to make it to appear at the top of the screen?

1

There are 1 best solutions below

1
On

Try you following code, I found they using following CSS to make it center it:

.jconfirm .jconfirm-cell {
    vertical-align: top;
}

Also have option alignMiddle : false but 'alignMiddle' method deprecated in new version.