Hi there,
Your theme has a CSS style for ALL images inside the content area which is causing this problem. If you are the theme author, I’d recommend removing the !important from this rule:
.entry-content img {
max-width: 100% !important;
}
If you are not the theme author, then add this to the bottom of your child theme’s style.css file, or into the Customizer’s “Custom CSS” section:
.entry-content div.gm-style img {
max-width: none !important;
}
That should do it. Thanks!
thanks, this fixed the issue but the images in the marker bubbles are of different sizes and enlarged. I had to add another max-width for the classes of the images in the marker bubbles
I just reviewed your map and it appears to work just fine. Is this resolved? Can you confirm?
It’s ok now, I was able to resolve the marker bubble featured image by adding the max width on the marker bubble class.
Thanks for the confirmation @bachini22 — glad to hear!