Select to view content in your preferred language

Making scrollbars always visible

183
1
11-03-2024 08:37 AM
Labels (1)
LydiaKateYoder
Emerging Contributor

Is there a way to make the scrollbars on text widgets always visible? No matter what style settings I use, the scrollbars disappear unless my cursor is hovering over the window.

Having persistent scrollbar visibility is a basic usability need (See UX recommendations from Nielsen Norman Group https://www.nngroup.com/articles/scrolling-and-scrollbars/). Without this, a web app's usability is quite limited.

0 Kudos
1 Reply
JeffreyThompson2
MVP Regular Contributor

On Developer Edition, you can alter the CSS using the overflow scroll property. I don't think there is a solution for this in any other versions.

body {
  overflow: scroll; /* Show scrollbars */
}
GIS Developer
City of Arlington, Texas