Skip to main content
How to hide the scrollbar?

Can I disable the scroll bar on my social wall?

Daniela Turcanu avatar
Written by Daniela Turcanu
Updated over 3 years ago

You can disable the scroll bar on your social wall in two ways:

  1. 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.

  2. 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;
    }

  3. 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!

Did this answer your question?