09/22/2017 at 9:19 am
#435592
Keymaster
@ Ray
It’s the theme messing image map tiles. O line 98 in the _general.scss file it has these lines:
img.scale-with-grid, #sitecontainer img {
max-width: 100% !important;
height: auto !important;
}
The max-width is causing all images to be 100% width overriding the Google’s CSS for the map image tiles. I would consider this a bug in the theme and suggest your report it to the theme’s support team.
Try adding this to the theme’s custom CSS area
div.cn-gmap[id^="map-container-"] .gm-style img {
max-width: none !important;
}
I already include a similar statement in Connections to try to fix themes that do this but the way the implemented there statement overrides that too. If this does not work you will unfortunately have to contact the theme support team to have them correct it.
Hope this helps, let me know.
