/* Increase Regular Wix Gallery pop-up size */
.wixui-lightbox, .gallery-lightbox {
max-width: 1400px !important; /* Desired width, e.g., 1400px or 100vw for full-screen */
max-height: 100vh !important; /* Desired height, e.g., 100% of viewport height */
width: 100% !important;
height: 100% !important;
margin: 0 auto !important; /* Center the pop-up */
}
.wixui-lightbox__image, .gallery-lightbox img {
max-width: 100% !important;
max-height: 100vh !important;
width: auto !important;
height: auto !important;
object-fit: contain !important; /* Preserve aspect ratio, no cropping */
}
@media (max-width: 768px) {
.wixui-lightbox, .gallery-lightbox {
max-width: 90vw !important; /* Smaller for mobile */
max-height: 80vh !important;
}
}
top of page
bottom of page