Skip to main content
12-Amethyst
August 16, 2022
Solved

How to reduce the scroll bar width in collection widget

  • August 16, 2022
  • 1 reply
  • 1209 views

I would like to reduce the width of the scroll bar in the collection widget. Also attached the screenshot for reference.

Best answer by Sathishkumar_C

try this CSS... it will be applicable for entire page 

 

/* width */
::-webkit-scrollbar {
width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 5px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: red;
border-radius: 5px;
}

1 reply

17-Peridot
August 17, 2022

try this CSS... it will be applicable for entire page 

 

/* width */
::-webkit-scrollbar {
width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 5px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: red;
border-radius: 5px;
}

12-Amethyst
August 17, 2022

Yes it worked. Thank You!