Skip to main content
All CollectionsRound Markers
How to Resize Marker on Mobile
How to Resize Marker on Mobile
James avatar
Written by James
Updated over a week ago

For versions before 1.4.5, the option to set a different marker size on mobile does not exist and therefore you’ll need to use custom css.

You can add this to your site’s custom css or the map custom CSS if you’re using the Pro version:

@media only screen and (max-width: 768px) { .imapsCircle { transform:scale(0.3); } }

You can change the 0.3 value to something else that better suits your needs.

Did this answer your question?