or is there a way make the location list paginated on mobile?
Hello,
my apologies for not replying sooner. I’ve just visited your page and it did display the scroll bar in the location list. Or am I missing something?
well on an iphone you can’t tell that the section is scrollable
is there a way make the location list paginated on mobile?
Sorry no, there’s no option to paginate the list in the current version. You can probably add some custom CSS to emphasize the scrollbar a bit more for mobiles. In your WordPress admin, go to Appearance, Customize, then choose Additional CSS, and paste the following code:
@media (max-width: 48em) {
.hclc_list_class::-webkit-scrollbar {
width: 1em;
}
.hclc_list_class::-webkit-scrollbar-thumb {
box-shadow: inset 0 0 .5em rgba(0, 0, 0, 0.3);
}
}