Change the Markers’ size in Map

Add this code to the Custom CSS field on the Style tab of your Store Locator widget’s settings:

[class*="marker__Container-sc"] {
  transform-origin: center bottom;
  transform: scale(3);
}

[class*="marker__Container-sc"]:hover {
  transform: scale(4);
}

With the scale value you can adjust the desired size

3 Likes