Just solved my issue.
This:
<iframe src="//www.youtube.com/embed/cGi4hNgyhik?rel=0&showinfo=0" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
This text should be to the right side of the video, like a description box.
Should have been this:
<div id="video-wrap">
<iframe src="//www.youtube.com/embed/cGi4hNgyhik?rel=0&showinfo=0" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
</div>
This text should be to the right side of the video, like a description box.
I simply added the div tags, nothing was changed within the embed code.
And this bit of code should be added to style.css:
#video-wrap {
float: left;
margin: 0 20px 0px 0;
}
Of course, “video-wrap” could read anything, but I’m using the information from the tutorial at wpmudev.org.
Hope this solves anyone else’s issue with a similar problem!