Remove scroll feature from repeating groups

Hey there,

I’m wondering if anyone here knows how to remove the scroll from the repeating groups?

It appears on both the vertical and horizontal groups and I’m not sure how to remove it.

I know It’s possible from the designs Zeroqode upload but they don’t check emails.

Thanks,
Mohamad

Do you want it to not be scrollable or just make it scrollable but hide the scrollbar?

Short version.

  1. Give the repeating group an ID

  2. Add this to the page header or HTML element

#ID { -ms-overflow-style: none; /* Internet Explorer 10+ */ scrollbar-width: none; /* Firefox */ } #ID::-webkit-scrollbar { display: none; /* Safari and Chrome */ }

Exactly, I want the scroll feature without the scroll on the side

Thanks for this reply, how do I access the page header or HTML element?

I’ve literally never done that before haha

You can use the scroll bar plugin and make the colors transparent.

Add this code here


^^find this by double clicking outside of the border of your page or anywhere on the canvas an element doesn’t exist yet

<style>

#<insert the element ID here> { -ms-overflow-style: none; /* Internet Explorer 10+ */ scrollbar-width: none; /* Firefox */ } #ID::-webkit-scrollbar { display: none; /* Safari and Chrome */ }

</style>

^^^this is the code from above. I’m not sure that it works. Just that it’d go here.