Hello everyone!
Hey there, I'm Cody, a student and amateur web designer. I recently got the opportunity to work on a website for a family friend.
I've been using bootstrap3 to ensure the site is responsive, but I've run into an issue while trying to embed both the youtube player API and the facebook page API on the homepage of the website.
The col-8 section is designated as the main content area, while the col-4 serves as a sidebar/sharing section.
While the youtube player loads correctly, the col-4 and content thereafter do not display. Strangely enough, when I disable the youtube player, the page loads perfectly fine.
If anyone can assist me in troubleshooting this issue, I would greatly appreciate it!
<body>
<div class="container row">
<div class="col-sm-8">.col-sm-8
<h3>What is Roger's Lake of the Woods Adventures?</h3>
<p>testing testing</p>
<!-- Youtube Player API Placement -->
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item"
id="ytplayer"
type="text/html"
src="http://www.youtube.com/embed/M7lc1UVf-VE?autoplay=0&origin=http://lakeofthewoodsadventures.com"
/>
</div>
<!-- End of Youtube Player API Placement -->
</div>
<div class="darkBG col-sm-4">
<!-- Facebook Page Feed API Placement -->
<div class="fb-page" data-href="https://www.facebook.com/pages/Rogers-Lake-of-the-Woods-Adventures/597978003639919"
data-width="280"
data-hide-cover="true"
data-show-facepile="false"
data-show-posts="true">
<div class="fb-xfbml-parse-ignore">
<blockquote cite="https://www.facebook.com/pages/Rogers-Lake-of-the-Woods-Adventures/597978003639919">
<a href="https://www.facebook.com/pages/Rogers-Lake-of-the-Woods-Adventures/597978003639919">
Roger's Lake of the Woods Adventures
</a>
</blockquote>
</div>
</div>
<!-- End of Facebook Page Feed API Placement -->
</div>
</div>
<script src="Local Bootstrap/js/bootstrap.min.js"></script>
</body>
Any assistance or insights are much appreciated! - Cody