You can disable the scrollbar on your social wall in two ways:
Append the parameter ?scrollable=0 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?scrollable=0.
Use a CSS snippet to hide the scrollbar
For hiding the scrollbar on the right, add this code to your custom CSS box under Setup > 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: This change hides the scrollbar in all browsers. If you want visitors to keep a visible scroll cue on your wall, test the wall carefully before publishing this update.
In case you have further questions, don't hesitate to contact the support team via chat or support@walls.io!



