How do you get rid of vertical scrollbar

You can give your repeating group an ID and hide the scrollbar putting this CSS into an HTML element on the page:

<style>
#yourID::-webkit-scrollbar { display: none; }
#yourID {
-ms-overflow-style: none;
scrollbar-width: none;
}
</style>

8 Likes