cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - If community subscription notifications are filling up your inbox you can set up a daily digest and get all your notifications in a single email. X

How to reduce the scroll bar width in collection widget

PG_10250187
11-Garnet

How to reduce the scroll bar width in collection widget

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

1 ACCEPTED SOLUTION

Accepted Solutions

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

View solution in original post

2 REPLIES 2

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

Yes it worked. Thank You!

Top Tags