What seems to be happening is that browsers other than MSIE consider your "mapKey" div to really have height=60px, and allow the contents to overflow.
MSIE ignores your style.height="60px" specification, and makes the div sufficiently large to hold all the contents. This then means that the margin_top of the following div is measured from a completely different place. I suggest specifying mapKey.style.height to be larger than the mapKey contents, and reducing zoomInDiv.style.marginTop by the amount that you added. mapKey.style.height = "160px"; zoomInDiv.style.marginTop = "116px"; Unfortunately, things will still look a little different in different browsers, due to slight differences in browser rendering behaviour and user preferences. It might be better to try to place the divs in specified positions within the "container" div rather than try to space then out with large margins. -- Mike Williams http://econym.org.uk/gmap --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
