Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Responsive embed in Bootstrap 3 doesn't work

Hello im creating a web site with Bootstrap 3, everything was going well till i tried to put a Youtube video in my site, so i used responsive embed class that Bootstrap provides but when i display the content of my website the video doesn't show it, i've tried many things like copying the code exactly of Bootstrap page but it still does not work!. Can someone help me?. This is my code:

<!-- PROMOTIONAL VIDEO -->
<section class="wrap" id="promo-video">
    <div class="container">

    <div class="header-section">
        <h2>Mira el video de presentacion</h2>
    </div>
        <div class="row">
            <div class="col-sm-8 col-sm-offset-2">
                <!-- 16:9 aspect ratio -->
            <div class="embed-responsive embed-responsive-16by9">
            <iframe class="embed-responsive-item" src="https://www.youtube.com/watch?v=H0uvGe0AhNI"></iframe>
            </div>
            </div><!-- .col -->
        </div><!-- row -->

    </div><!-- .container -->
</section>
<!-- END PROMOTIONAL VIDEO -->
like image 478
AJ Ze Avatar asked Aug 28 '26 12:08

AJ Ze


1 Answers

In your code src attr is wrong for IFRAME embed. You need like this.

<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/PIh2xe4jnpk"></iframe>
like image 151
nihar jyoti sarma Avatar answered Aug 31 '26 03:08

nihar jyoti sarma



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!