Sorry to bother you once again -- just one quick question:
Where can I find the Map IDs referenced below?
The Theme author had a look at my site with your plugin, and could not find anything wrong with his code -- but he sent me this code to work around the issue of having Maps >300 px crash on an iPhone:
________________________________________
/* Not a mobile */
#lmm_a45b3295 .mapsmarker {
display: block;
}
#lmm_a45b3296 .mapsmarker {
display: none;
}
/* Is a mobile */
@media only screen and (max-width: 767px) {
#lmm_a45b3295 .mapsmarker {
display: none;
}
#lmm_a45b3296 .mapsmarker {
display: block;
}
}
Where lmm_a45b3295 and lmm_a45b3296 are the map IDs.
____________________________________
Thanks again for a great plugin, and for your excellent support.