angewi
Forum Replies Created
-
Forum: Plugins
In reply to: [Basic Google Maps Placemarks] Adding Responsive Code Messes Up ResultsHey there Leeuwtje
We had the same thing and got it working with this solution:
http://ww.wp.xz.cn/support/topic/plugin-basic-google-maps-placemarks-how-to-tweak-the-code-to-get-width-instead-of-fixed-pxLook down at FlavioSerra’s third comment
“i.e. if one writes “95” then pixels is taken as a default and the width of the map is “95 pixels”, but if one writes “95%” the map is sized as a percent of the column/page.”Hope this helps!
AngeForum: Plugins
In reply to: [Basic Google Maps Placemarks] Responsive?Hey there, daft question first – are you meaning the individual placemarks shown on the map when you click on the placemark icon?
If so, we do this by adding two different block elements in our child theme’s CSS
#This adjusts the size of the placemark
.bgmp_placemark {
width: 190px;
height: 240px;
}#This controls the font size and colour
.bgmp_placemark,
.bgmp_placemark a {
color: #333;
text-decoration: underline;
font-family: ‘Droid Serif’, serif;
font-weight: 400;
font-size: 14px;
}If this isn’t what you’re meaning then apologies and just ignore my havering!
Forum: Plugins
In reply to: [Basic Google Maps Placemarks] Responsive?Hello there, funnily enough I’ve just been trying to get my maps responsive too and found an older post that’s worked for me without needing to do any code changes.
Look down at FlavioSerra’s third comment
“i.e. if one writes “95” then pixels is taken as a default and the width of the map is “95 pixels”, but if one writes “95%” the map is sized as a percent of the column/page.”It appears to be working, I just added 95% to the map width field in settings.
Hope this helps!
Forum: Fixing WordPress
In reply to: Edit box has gotten enormously long and setting for it is gone.Brilliant post and thanks mrmonster and kymar…I was well into the “it must be me, what have I broken!?” point
So I was delighted when I found your post and it’s such a simple workaround fix. Thank you!