Developing a Facebook tab for a fan page using a static iframe app by WooBox. Can't use JS because of Facebook's security settings.
My CSS dropdown menu's aren't working within the iframe for ie8 and lower. The image's showup fine, but the ul hover:li ul; display: inline; doesn't seem to be working. Works fine outside of iframe on all browsers. Here's my code:
<style>
#menu-nav {
width: 213px;
padding: 0px;
margin:0px;
}
#menu-nav ul {
list-style:none;
margin: 0px;
padding: 0px;
clear:both;
}
#menu-nav ul li {
position:relative;
float:left;
margin: 0px;
padding:0px;
}
#menu-nav ul li a {
display:block;
}
#menu-nav ul li ul {
display: none;
clear:both;
max-width: 280px;
}
#menu-nav ul li:hover ul {
display:inline;
position:absolute;
min-width:280px;
margin-top: 0px;
left: 15px;
padding: 0px;
}
#menu-nav ul li:hover ul li p{
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
background:#fadea9;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
width:170px;
text-align:left;
padding:5px 10px;
margin: -15px 0px 0px 0px;
position: relative;
}
#menu-nav ul li:hover ul li a {
display:inline;
}
</style>
<body>
<div style="background:url(
http://www.careerstaff.com/Images/external/Social_Media/images/support.jpg) no-repeat;
margin-left:auto; margin-right:auto; width:790px; height:691px; position:relative;
top:0px; left: 0px;">
<div style="position:relative; left:210px; top:317px;" id="menu-nav">
<ul>
<li style="z-index:99; position:relative; left:0px;"><a><img
src="http://www.careerstaff.com/Images/external/Social_Media/images/Links.png"
style="z-index:98; position:relative; left:0px;" /></a>
<ul>
<li style="z-index:97; position:relative; left:0px;"><p><a
href="http://www.careerstaff.com/content/default/resources.aspx" target="_blank"
style="color:#3b5b9f;">Links</a> to associations and resources for your profession.</p>
</li>
</ul>
</li>
<li style="z-index:96; position:relative; left:0px; padding-top: 23px;"><a><img
src="http://www.careerstaff.com/Images/external/Social_Media/images/CEUs.png" style="z-
index:95; position:relative; left:0px;" /></a>
<ul>
<li style="z-index:94; position:relative; left:0px;"><p>CareerStaff employees can use
Sun University’s outstanding <a
href="http://www.readynurse.com/content/default/unlimited_CEUs.aspx" target="_blank"
style="color:#3b5b9f;">Continuing Education Program</a> to meet their learning goals.
Until then, we have found a web site that offers you access to <a
href="http://usatravmed.com/main/page_free_cme_therapists_ptotst.php" target="_blank"
style="color:#3b5b9f;">free CEUs</a>.</p>
</li>
</ul>
</li>
<li style="padding-top: 23px; z-index:93; position:relative; left:0px;"><a><img
src="http://www.careerstaff.com/Images/external/Social_Media/images/Apply2.png"
style="z-index:92; position:relative; left:0px;" /></a>
<ul>
<li style="z-index:91; position:relative; left:0px;"><p><strong>Like what you
see?</strong> Whether you need a permanent placement, local contract or per diem
position, we can help you find your ideal assignment. <a
href="http://www.careerstaff.com/Jobs/Jobs.aspx" target="_blank"
style="color:#3b5b9f;">Apply now</a>.</p>
</li>
</ul>
</li>
</ul>
</div>
</div>
//example.com/foo.jslet’s the browser decide if he has to load that resource via HTTP or HTTPs. – CBroe Jul 2 '12 at 17:40