 
	
		
		
		
		
			
Hi,
1.) i added a video to my site.
If you click on the 3rd video in a row, it opens with popup. The video is in a 1:1 ratio, but it opens with dark borders. Please see screenshot.
2.) in responsive view the same video will be opened in thumbnail size. Please see screenshot 2.
How can i fix that?
kind regards
Jak
Hey Jak73,
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:
@media only screen and (min-width: 768px) { 
#top.page-id-600 .mfp-iframe-scaler iframe.mfp-iframe,
#top.page-id-600 .mfp-iframe-scaler {
    width: 507px;
    height: 507px;
    margin: auto;
}
}
@media only screen and (max-width: 767px) { 
#top.page-id-600 .mfp-iframe-scaler iframe.mfp-iframe,
#top.page-id-600 .mfp-iframe-scaler {
    width: 300px;
    height: 300px;
}
}Best regards,
Mike
