I encountered a similar problem with lengthy "Description" fields. They looked fine in Safari, but in both Google Chrome and Firefox the text ran off the bottom of the balloon. After experimenting a bit, I discovered that it works if your InfoWindow has the following:
<div class='googft-info-window' style='font-family: sans-serif;width: 600px; height: 600px; overflow: auto;'>
In fact, as long as width is greater than or equal to height, it works. But when not there at all, or with height greater than width, the text spills out.
I don't know if this will help anyone else... |