• Resolved bachini22

    (@bachini22)


    I have a gray map but the markers load. When I try to scroll to the left, the rest of the map shows up. So far all markers were loaded successfully and there are no errors on the console. Any Ideas?

    https:retroscope.ph/explore

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Matt Cromwell

    (@webdevmattcrom)

    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!

    Thread Starter bachini22

    (@bachini22)

    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

    Plugin Author Matt Cromwell

    (@webdevmattcrom)

    I just reviewed your map and it appears to work just fine. Is this resolved? Can you confirm?

    Thread Starter bachini22

    (@bachini22)

    It’s ok now, I was able to resolve the marker bubble featured image by adding the max width on the marker bubble class.

    Plugin Author Matt Cromwell

    (@webdevmattcrom)

    Thanks for the confirmation @bachini22 — glad to hear!

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Gray Map only on the marker area’ is closed to new replies.