<div class="google_maps_is_too_wide_on_my_site">
// the maps code goes here
</div>
Then add this example CSS:
.google_maps_is_too_wide_on_my_site {
max-width: 600px;
display: block;
margin: 1em auto;
padding: 0.5em;
}
Test the max width at full screen until it fits it’s container and apply @media rules as needed for smaller screens, adjust margin and padding as needed to the new div.
]]>