I am not sure how to remove the whitespace, but you should think twice about that, since it will look bad without whitespace.
The reason why you are getting vertical scrollbar is because your info window max height is limited by the map height which is too narrow. Looks like there is some predefined margin above info window and top edge of the map, so info window gets squished to lower size and gets a scrollbar. To remove it, you need to use CSS and set "overflow:hidden" to your DIV which has entire content. Or add that DIV if you did not do that yet. However, it will crop a bottom of the photo of the second person in your info window. See example at http://code.google.com/apis/maps/documentation/javascript/overlays.html#InfoWindows In that example you would write "<div id="content" style="overflow:hidden"> to guarantee no scroll bars. Thanks, Alex On Oct 11, 5:39 am, rmcguire <[email protected]> wrote: > would removing the padding and possibly setting the height and width > from within there possibly set the dimensions of the infowindow > correctly? Also do I put my div around each of my functions which > calls the infowindow? > > my page again is atwww.meadowlarkco.com/contactus.php > > Thanks for any help provided. > > On Oct 10, 3:39 pm, "[email protected]" <[email protected]> > wrote: > > > > > > > > > On Oct 10, 2:34 pm, "[email protected]" <[email protected]> > > wrote: > > > > On Oct 10, 2:10 pm, Joseph Elfelt <[email protected]> wrote: > > > > > I got Not Found on your link. > > > > The group is mangling the link (pre-pendingwww.google.comtoit), see > > > if this works: > > > >http://www.meadowlarkco.com/contactus.php > > > > To the OP: > > > This is a general css/html question, not really map specific. Try > > > searching the > > > web.http://www.google.com/search?client=gmail&rls=gm&q=remove%20scroll%20... > > > > But my guess is that the contents of the infowindow is too big for > > > it to fit on the map. You might want to remove some of the extraneous > > > white space. > > > You may also want to make the "shared borders" of the regions be the > > same points, it looks strange the way you have it now with the two > > "West Sales" areas different colors and overlaping. > > > -- Larry- Hide quoted text - > > > - Show quoted text - -- 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.
