Created
December 15, 2014 19:16
-
-
Save anneallen/a9672ad86f7984c5549c to your computer and use it in GitHub Desktop.
Fix Lightbox showing behind Youtube iframe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Add ?wmode=transparent&rel=0 to the youtube embed src | |
//Before | |
/* | |
<iframe width="560" height="315" src="//www.youtube.com/embed/Grgztdps2Rc" frameborder="0" allowfullscreen></iframe> | |
*/ | |
//After - and it works | |
<iframe width="560" height="315" src="//www.youtube.com/embed/Grgztdps2Rc?wmode=transparent&rel=0" frameborder="0" allowfullscreen></iframe> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment