Increase Scrollbar Width

If users are experiencing issues with the width of the scrollbar for the store list, you can adjust it by adding custom CSS. Here’s the code you can provide to them:

body #asl-storelocator.asl-cont *::-webkit-scrollbar {width: 10px; }
body #asl-storelocator.asl-cont *::-webkit-scrollbar-track {border-radius: 50px;background-color: #e3e3e3; }
body #asl-storelocator.asl-cont *::-webkit-scrollbar-thumb {background: #898989 !important;border-radius: 00px; }
body #asl-storelocator.asl-cont *::-webkit-scrollbar-thumb:hover {background: #eee; }

Users can copy and paste these CSS rules into their website’s stylesheet or a custom CSS section. They can adjust the width, background-color, and other properties to match their specific design preferences, the above CSS rules can be added to your stylesheet or additional CSS.