Hi, can you share your URL?
Thank you
Yes – http://test2.lidvito.ru/test-video/
Its clean install wordpress + default theme
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
Many thanks!
Tell me, what about question number 3?
How do I change the size of a tumbnail? (now 200 x 150 px)
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="http://www.yourdomain.com/wp-content/uploads/anchor-image.jpg"]
Kind regards