Wasn't it GetItWorking who wrote: > >Hi everyone, > >I have so many questions that I've kept search on but haven't found >the solution. >I finally decided to post some of my questions: > >1. How in the world do you remove the shadow from the infoWindowHtml? > I looked at marker.infoWindowHtml options, but have not been able >to > implement or don't know how to implement these.
There's no option for removing the shadow of a Google info window. You could: * Crawl through the DOM looking for references to the shadow graphic, and clobber them. The shadow graphic is currently http://maps.google.com/intl/en_ALL/mapfiles/iws2.png but that may change in future versions. If you take this route, remember to watch out for the fact that the DOM structure will be significantly different when running in MSIE because of the AlphaImageLoader. * Hide the G_MAP_FLOAT_SHADOW_PANE. That should be safe as long as you're not using any custom GOverlay()s that use the same pane. * Consider using one of the third-party window systems that don't have shadows. -- 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 -~----------~----~----~----~------~----~------~--~---
