Hi Ahmed,
You can find the popup width setting showcased in the image below. Just set it to your prefered width.
If this helps, please accept the answer.
Best regards,
João
you can check that page property there is you can change pop-up size
Please check the screenshot
Hi Ayman Ahmed,
You can also adjust the Height and Width of the Popup page in styles
Refer the bellow style
.modal-dialog{
height: 380px;
width: 600px;
}
But you can't resize it in UI. This is only for fixed size popups
Hi,
In Mendix, popup page width is controlled by the page layout and Atlas UI classes.
To reduce the width, you can:
.custom-popup {
max-width: 500px;
margin: auto;
}
Then assign this class to the main container.
mx-autocol-md-6 or col-lg-4This ensures the popup remains centered while reducing its width.