Skip to content

How to center modal/pop-up edit form

A little CSS comes to rescue.  Not perfect but should work for the most use cases. 

Adjust the padding accordingly.

.modal.ui-jqdialog {
    width: 100% !important;
    padding: 10% 20%;
    margin: auto;
}

Feedback and Knowledge Base