12/10/2013 at 1:48 pm
#275082
Keymaster
@
Nope, not normal and is being caused by this style in the theme:
.block-type-content div.entry-content img {
border-top-left-radius:0px;
border-top-right-radius:0px;
border-bottom-left-radius:0px;
border-bottom-right-radius:0px;
box-shadow:rgba(0,0,0,0.5) 2px 2px 6px;
background-color:rgba(0,177,255,0);
}
Basically it adds a drop shadow behind every image in the post content, even in Google Maps.
Add the following to the end of the theme’s style.css file, or, alternatively, if the theme has one it’s custom CSS area:
#cn-cmap .cn-gmap-single img {
background-color: transparent;
max-width: none !important;
box-shadow: none !important;
}
It’ll override the theme’s style and fix the map.
Hope that helps.
