Skip to content

Instantly share code, notes, and snippets.

@anneallen
Created December 15, 2014 19:16
Show Gist options
  • Save anneallen/a9672ad86f7984c5549c to your computer and use it in GitHub Desktop.
Save anneallen/a9672ad86f7984c5549c to your computer and use it in GitHub Desktop.
Fix Lightbox showing behind Youtube iframe
//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