Hello everyone,
I have a site which uses YUI to build a drop down menu system. There are two pages in this site that have embedded .pdf files in them. When one of the pages with the .pdf is open the drop down menu goes behind the .pdf and you cannot see the menu options. I have tried using <embed>, <object>, and <iframe> with the same results. I tried to wrap it in a <div> tag and adjust the z-index with no luck, either.
The site uses php includes to load the pdf. Here is that bit of code:
<?php include_once("../includes/menu.php"); ?>
<!-- menu ends -->
<!-- start content -->
<br /><br />
<div align="center">
<embed src="../images/classes/<?php echo $Array[0]; ?>" width="1000px" height="1000px" />
</div>
<!-- end content --><br /><br />
<!-- begin footer -->
<?php include_once("../includes/footer.php"); ?>
This does not seem to be an issue in firefox, but it is in explorer, chrome, opera, and safari.
Here is a link to the site. Everything else works great except for this one issue.
Thanks for any help you can give.