GUIDE TO POSTING YOUTUBE VIDEOS

Are you having trouble adding embedded You Tube videos to your website?

Some people have complained to us that the YouTube embed feature is not working for them.

This guide will help you get around the error in the code, so that you can post a video directly to your page.

 

Step 1: Get the embed code from You Tube. Here is a sample of some embed code:

<iframe width="853" height="480" src="//www.youtube.com/embed/rjVlbjD-bnU?rel=0" frameborder="0" allowfullscreen></iframe>

 

Step 2: Notice that the url included does not have "https://"

<iframe width="853" height="480" src="//www.youtube.com/embed/rjVlbjD-bnU?rel=0" frameborder="0" allowfullscreen></iframe>

 

Step 3: Insert "https://" at the beginning of the url in the code

<iframe width="853" height="480" src="https://www.youtube.com/embed/rjVlbjD-bnU?rel=0" frameborder="0" allowfullscreen></iframe>

 

Step 4: Your code is now fixed. Place the embed code in your source code as usual.

See, the video works.