I embedded some youtube videos in my page and they worked locally but don't work online. I tried debugging and realized that I think its because these videos are externally hosted (tried the same thing with externally hosted images). Here's a link to my page to see the problem. Is there a quick fix for this that I don't understand? Tested the local version before I deployed and it does work.
<div id="myCarousel" class="carousel slide">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Carousel items -->
<div class="carousel-inner">
</div>
<!-- Carousel nav -->
<a class="carousel-control left" href="#myCarousel" data-slide="prev">‹</a>
<a class="carousel-control right" href="#myCarousel" data-slide="next">›</a>
</div>