Is there a way to center the dialog windows of the Alertify Js plugin?
I have seen there is a property called position, but it does not support center position.
Thank you all.
Is there a way to center the dialog windows of the Alertify Js plugin? http://alertifyjs.
I have seen there is a property called position, but it does not support center position.
Thank you all.
Share Improve this question asked Apr 5, 2017 at 15:32 elarmandoelarmando 5791 gold badge7 silver badges17 bronze badges 1- Are you talking about vertical center? Because it appears to already be centered horizontally in the demos – Kevin Jantzer Commented Apr 5, 2017 at 18:00
1 Answer
Reset to default 6If you modify the css you can achieve this:
.alertify .ajs-dialog {
top: 50%;
transform: translateY(-50%);
margin: auto;
}