• lexxaro

    (@lexxaro)


    Firstly – thank you very much for the wonderful plugin.
    Help is needed:
    1. Remove the white frame (screenshot – https://yadi.sk/i/R4YR1moD3PjatG)
    2. Move the “Close” button to the upper right corner. (screenshot –
    ? https://yadi.sk/i/h6-czl0e3Pjaxv).
    3. How can I change the standard size of tumbnail (if auto_tumb = “1” is used)? Now this is 200×150

    I would really appreciate your help.

    • This topic was modified 7 years ago by lexxaro.
Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support mbrsolution

    (@mbrsolution)

    Hi, can you share your URL?

    Thank you

    Thread Starter lexxaro

    (@lexxaro)

    Yes – https://test2.lidvito.ru/test-video/
    Its clean install wordpress + default theme

    Plugin Support mbrsolution

    (@mbrsolution)

    Hi, to remove the white frame fro the button remove the following 8px and #fff from the css code below.

    .entry-content a img, .widget a img {
        box-shadow: 0 0 0 8px #fff;
    }

    The close button is more of a challenge because you have to take into consideration the responsive setup as well.

    I have submitted a message to the developers to investigate further this issue.

    Thank you

    Thread Starter lexxaro

    (@lexxaro)

    Many thanks!
    Tell me, what about question number 3?
    How do I change the size of a tumbnail? (now 200 x 150 px)

    Plugin Support mbrsolution

    (@mbrsolution)

    Hi, the third question is a bit tricky.The following CSS code is currently controlling the size. If you alter the width and height, the changes will not take place until you remove max-width: 100%;. But I cannot guarantee that this will work correctly in responsive viewing i.e. mobile device. Plus the thumbnail image will also look distorted depending on the width and height increased by.

    .video_lightbox_auto_anchor_image {
        width: 200px;
        height: 150px;
    }
    img, video {
        height: auto;
        max-width: 100%;
    }

    In that case it is best to use an image instead of auto_tumb = “1” parameter.

    Here is an example shortcode using an image.

    [video_lightbox_youtube video_id="G7z74BvLWUg" width="640" height="480" anchor="https://www.yourdomain.com/wp-content/uploads/anchor-image.jpg"]

    Kind regards

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Need help. Please (remove white border + move close button)’ is closed to new replies.