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

Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. 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.

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!

Announcements


Top Tags