You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Demo link or sample code:
http://sunnyworthing.org.uk/whats-on-in-worthing
What steps will reproduce the problem?
1. Click on a marker
2. The Close img width which is meant to be 12px is being over ridden by
another, more important, css class.
Expected result:
Close image should be displayed at 12px, but is displayed at 100%
Actual result:
I would like this to be displayed at 12px and am trying to find out how to add
a class to the infobubble.js or add !important to the style in the js.
Additional comments:
In infobubble.js, this code is used to display the image:
// Close button
var close = this.close_ = document.createElement('IMG');
close.style['position'] = 'absolute';
close.style['width'] = this.px(12);
close.style['height'] = this.px(12);
close.style['border'] = 0;
close.style['zIndex'] = this.baseZIndex_ + 1;
close.style['cursor'] = 'pointer';
close.src = 'https://maps.gstatic.com/intl/en_us/mapfiles/iw_close.gif';
Is is possible to add a class to IMG or add !important to the width style?
Thank you
Original issue reported on code.google.com by [email protected] on 5 Sep 2014 at 8:06
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 5 Sep 2014 at 8:06The text was updated successfully, but these errors were encountered: