NOTE TO THE ABOVE COMMENT: This is NOT a duplicate question!
The above didn't resolve my issue; I already know about the opaque and transparent attributes ... my issue is assimilating them into the php code given.
I have a youtube video page that's overlapping my top navigational video. I've read that including the attribute wmode="opaque" will solve the issue.
But I'm unsure as to how to implement it within PHP.
The code that calls the video is:
if ($showcase != ""):
if (isset($_GET['entry'])) {
$iframe_src = 'http://www.youtube.com/v/' . $_GET['entry'] . '?version=3&
f=videos&app=youtube_gdata&autoplay=1';
}
else {
$iframe_src = 'http://www.youtube.com/v/' . $showcase . '?version=3&
f=videos&app=youtube_gdata&autoplay=1';
}
$showcase_output = "<iframe height='" . $showcase_height . "' width='".
$showcase_width . "' src='" . $iframe_src . "'></iframe>";
endif;
Does anybody know how I can make these videos opaque, dynamically in php, so my top navigational menu overlaps the videos, instead of the other way around? I've searched for answers in the forums, but haven't figured out a solution yet. Thanks for any guidance anybody can offer!