Hi,
I am really happy with using the fancybox lightbox. However, after moving a module to a child-theme suddenly the sizing of my lightbox is not working anymore.
Page:
test.schasler.de/menschen/
Click on the image to open the lightbox.
Customization Code I use on the ARI Fancybox -> Settings -> Style Custom CSS field:
/*Set lightbox size*/
.fancybox-slide--iframe .fancybox-content {
width : 1000px;
height : 500 px;
max-width : 100%;
max-height : 100%;
margin: 0;
}
/*Set lightbox size on small screens*/
@media only screen and (max-width:1000px) {
.fancybox-slide--iframe .fancybox-content {
width : 500px;
height : 600px;
max-width : 100%;
max-height : 100%;
margin: 0;
}
Any hints would be appreciated!