-1

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?

MLK
  • 11
  • 3

1 Answers1

0

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.

Hanif
  • 3,739
  • 1
  • 12
  • 18