You can disable the scroll bar on your social wall in two ways:
Append the parameter ?notscrollable=1 to the wall URL
Let's see it in an example: your wall's URL is https://my.walls.io/starbucks. Just add the parameter above to disable scrolling: https://my.walls.io/starbucks?notscrollable=1.
Use a CSS snippet to hide the scrollbar
For hiding the scrollbar on the right, add this code to your custom CSS box under Settings > Design 👇
html {
overflow-y: scroll;
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* Internet Explorer 10+ */
}
html::-webkit-scrollbar { /* WebKit */
width: 0;
height: 0;
}Once you add the code snippet, the scrollbar will disappear 👇
Please note: it will hide the scrollbar in all browsers.
In case you have further questions, don't hesitate to contact the support team via chat or support@walls.io!