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?
Asked
Active
Viewed 180 times
-1
-
Welcome to SO https://stackoverflow.com/help – fool-dev Jan 16 '18 at 11:30
-
It's hard to offer advice without seeing your code. – TidyDev Jan 16 '18 at 11:34
1 Answers
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