• Hi there,

    For a block that contains a row of buttons we have used this CSS so they appear in one row, this gives a horizontal scroll within a specific width container:

    .search-more-button-row {
    white-space: nowrap;
    overflow-y: auto;
    }

    Works as we need, a number of buttons are hidden until you scroll, nice and simple and no additional plugins.

    However, it looks too subtle. I have searched high and low and cannot find a conclusive answer, is there a way of keeping the scroll bar permanently visible?

    Many thanks in advance.

    • This topic was modified 4 years, 1 month ago by NorfolkUK.
Viewing 1 replies (of 1 total)
  • overflow-y : scroll always display scroll bars, so you should change your CSS to:

    .search-more-button-row {
    white-space: nowrap;
    overflow-y: scroll;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Make a scroll bar permanently visible!’ is closed to new replies.