Wrap video embeds with div
-
With this theme anytime I attempt to use this in the functions.php it breaks. Trying to get my video embeds to be reactive on my website.
Functions.php
add_filter('embed_oembed_html', 'my_embed_oembed_html', 99, 4); function my_embed_oembed_html($html, $url, $attr, $post_id) { return '<div class="video-container">' . $html . '</div>'; }
Style.CSS
.video-container { position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; } .video-container iframe, .video-container object, .video-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Wrap video embeds with div’ is closed to new replies.