For Firefox, it's a CSS issue.
http://www.showmemud.com/images/UrbanArtist.css applies this style to
all images on your page:
img {
background: #1B1B1B;
border: 1px solid #1B1B1B;
padding: 6px;
}
If you don't want to (or can't) remove that setting, you can countermand
it for map images with
#map_canvas img {
background: transparent;
border: 0px;
padding: 0px;
}
In MSIE you also have the problem that MSIE doesn't tolerate severely
invalid HTML as well as other browsers do. It doesn't like you having
more than one DOCTYPE or <html> or <head>. The CMS that you're using
will presumably insert those into the correct places, so your additional
content should not contain extra ones.
--
http://econym.org.uk/gmap
The Blackpool Community Church Javascript Team
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---