I’ve embedded the Google Maps widget on my Wix website. Despite stretching the element to full screen and setting the margin to 0 px, it is still showing a small margin around the map, both horizontal and vertical. I’d like to completely remove this margin, but don’t know how.
The issue occurred because of the default browser styles. We’ve fixed it by adding this code to the Custom CSS field on the Appearance tab of your widget’s settings:
.global-styles,
html, body {
margin: 0;
padding: 0;
}
Check it out and let me know if it’s fine on your end