You could do it with CSS and using the brilliant plugin Classify.

  • Install the plugin
  • add a class to the RG by adding this in the ID field of the RG myGroup{addClass: “scrollClass”}
  • add this in an HTML Element on the page
<style>
    
.scrollClass {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
.scrollClass::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}
    
</style>
2 Likes