Skip to main content

How to hide the scrollbar?

Can I disable the scroll bar on my social wall?

Written by Daniela Turcanu
Updated this week

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

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

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

Did this answer your question?