It's because your map_canvas element has no width and height.

In Screen.css you have:

#map_canvas {
        width:400; height:300;
        border:1px;
}

The values 400 and 300 will not render in most browsers (and rightly
so).

ADD px to your values like so:

#map_canvas {
        width:400px; height:300px;
        border:1px;
}

Thanks
Pete

On Jan 28, 2:38 am, David Mack <[email protected]> wrote:
> Hey,
> I followed the bog standard embedding 
> on:http://dolcevitapizzeria.com/find-us.php
> But the map does not appear in the most recent IE - I googled around,
> but didn't find an obvious solution, sorry if this is a common
> problem!
>
> Thanks for your time,
> David

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" 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-js-api-v3?hl=en.

Reply via email to