Author: Mario Wilhelm Posted: Feb 23 2009 - 08:32 AM Subject: Info bubble height
On http://www.geisig.de/index.php?id=27 I have installed the wec_map. Everything works fine, except the info bubble. It is to small. The route planner isn't inside the bubble.
Is there a fix? What can I do?
Author: Christoph Koehler Posted: Feb 23 2009 - 09:49 AM Subject: re: Info bubble height
Mario,
Check your CSS styles, they are more likley responsible. It looked like line-height may be the problem.
Add something like:
CODE:
.tx-wecmap-map {
line-height: <something lower than what it is now>;
}
You can also lower the line-height that's already there, but that would change it across the whole site.
The reason is that Google computes the size of the bubble from just the HTML that's in it. Then, if the CSS changes the layout, it overflows the bubble.
Christoph
Author: Mario Wilhelm Posted: Feb 23 2009 - 09:55 AM Subject: re: Info bubble height