Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1343188

    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

    • This topic was modified 2 years, 8 months ago by Jak73.
    #1343298

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.