On Sep 30, 10:04 am, "[email protected]" <[email protected]> wrote: > Onhttp://94.136.38.27:81/scrt/index.php?option=com_content&view=article... > I have markers created using the following code
Code's irrelevant: the link is far more useful because it's a CSS- related issue. You are using <h1> to define your title, and styling that with ".gmnoprint h1". This style is applied when that element is *displayed*, but by that stage the infoWindow graphics have been sized to fit an ordinary h1 element. See http://econym.org.uk/gmap/css.htm for an explanation and suggested fix, although you shouldn't use <span> to contain block-level elements like <h1>. Another [untested] suggestion might be <h1 class="iwindow"> and css for "h1 .iwindow", which maintains valid HTML; I would expect the class to be used for constructing the infoWindow. Or define a specific <h> which don't use elsewhere for use in the infoWindow, like <h5>, although that does mess up the heading hierarchy. -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" 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.
