Google Maps, Z Index and Drop Down Javascript menus - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T15:08:02Zhttp://stackoverflow.com/feeds/question/86604http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/86604/google-maps-z-index-and-drop-down-javascript-menus2Google Maps, Z Index and Drop Down Javascript menus[ebarrera]2008-09-17T19:19:42Z2008-09-20T14:09:46Z
<p>I've run on a little problem today: I have a JS drop down menu and when I inserted a GoogleMap... the Menu is rendered behind the Google Map... Any ideas on how to chance the z Index of the Google Map?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/86604/google-maps-z-index-and-drop-down-javascript-menus/86640#866402Answer by andyuk for Google Maps, Z Index and Drop Down Javascript menusandyuk2008-09-17T19:23:52Z2008-09-17T19:23:52Z<p>Have you tried increasing the z-index of your drop down menu?</p>
<p>From <a href="http://www.w3schools.com/Css/pr_pos_z-index.asp" rel="nofollow">W3Schools CSS z-index Property</a>:</p>
<blockquote>
<p>The z-index property sets the stack
order of an element. An element with
greater stack order is always in front
of another element with lower stack
order.</p>
<p>Note: Elements can have negative stack
orders.</p>
<p>Note: Z-index only works on elements
that have been positioned (eg
position:absolute;)!</p>
</blockquote>
http://stackoverflow.com/questions/86604/google-maps-z-index-and-drop-down-javascript-menus/86662#866620Answer by davebug for Google Maps, Z Index and Drop Down Javascript menusdavebug2008-09-17T19:26:03Z2008-09-17T19:26:03Z<p>Try setting your menu z-index insanely high. <a href="http://archivist.incutio.com/viewlist/css-discuss/79150" rel="nofollow">Apparently</a> Google Maps uses a range from -9000000 to 9000000.</p>
http://stackoverflow.com/questions/86604/google-maps-z-index-and-drop-down-javascript-menus/87061#870610Answer by Diodeus for Google Maps, Z Index and Drop Down Javascript menusDiodeus2008-09-17T20:05:15Z2008-09-17T20:05:15Z<p>Wrap the map in a DIV, give that DIV a z-index of 1. Wrap your drop-down in a DIV and give it a higher value.</p>
http://stackoverflow.com/questions/86604/google-maps-z-index-and-drop-down-javascript-menus/87136#871361Answer by Anutron for Google Maps, Z Index and Drop Down Javascript menusAnutron2008-09-17T20:14:08Z2008-09-17T20:14:08Z<p>Note that dropdown menus in some browsers (<em>ahem</em>IE*ahem) cannot be zPositioned at all. You'll need to use an "iframe shim" to obscure it or hide the dropdown entirely if you want to position something above it. See: <a href="http://clientside.cnet.com/wiki/cnet-libraries/02-browser/02-iframeshim" rel="nofollow">http://clientside.cnet.com/wiki/cnet-libraries/02-browser/02-iframeshim</a></p>
http://stackoverflow.com/questions/86604/google-maps-z-index-and-drop-down-javascript-menus/94216#942162Answer by Jeremy Wadhams for Google Maps, Z Index and Drop Down Javascript menusJeremy Wadhams2008-09-18T16:34:22Z2008-09-18T16:34:22Z<p>If your problem happens in Internet Explorer, but it renders the way you'd expect in FireFox or Safari, <a href="http://aplus.rs/lab/z-pos/" rel="nofollow">this link</a> was extraordinarily helpful for me with a <a href="http://stackoverflow.com/questions/88883/yui-autocomplete-renders-under-other-page-elements-in-ie7">similar problem</a>.</p>
<p>It appears to boil down to the idea that marking an element as "position:relative;" in CSS causes IE6&7 to mess with it's z-index relative to other elements that come before it in the HTML document, in unintuitive and anti-spec ways. Supposedly IE8 behaves "correctly" but I haven't tested it myself.</p>
<p>Anutron's advice is going to be really helpful if your problem is with a <code><SELECT></code> form element, but if you're using JavaScript to manipulate divs or uls to act like a drop down I don't think it's going to help.</p>