Hi @melorama
Sorry for this delay. I work offshore and don’t have much time for other things.
Quick solution.
Because that theme is Bootstrap base (style and html side) you can do something like this: use shortcode to generate those video instead of just placing yt link.
I wrote simple plugin to extend theme features.
You can download it from GitHub:
https://github.com/mrpauloen/znacznik-youtube#znacznik-youtube
I’ve done it because I wanted to make a video gallery so there is some catch which you need to now about.
To manipulate thumbs size you need to change classes in 113 line, on znacznik_youtube.php
file:
eg.: You have this
output = '<figure class="col-6 col-sm-4 col-md-3 ' . esc_attr( $float ) . '">' . "\r\n";
Try to change col-6 col-md-4 to meet your criteria.
If you not familiar with Bootstrap grid, see this documentation:
https://getbootstrap.com/docs/4.0/layout/grid/
This is Bootstrap 4.
Do not hesitate to ask any questions if you’ll have any difficulties.
Cheers