Skip to main content
1-Visitor
March 25, 2021
Solved

How to reduce size of scrollbars

  • March 25, 2021
  • 3 replies
  • 2198 views

Is it possible to reduce size of scrollbars ?

I have attached image below in that Menu`s scrollbar is bigger .

how to reduce the size of scrollbar ?

sanjanabalaji_0-1616708916046.png

 

Best answer by SachinSharma

@sanjanabalaji 

 

Following help center guide explains how you can configure container scrolling. 

 

Regards,

Sachin

3 replies

Community Manager
March 25, 2021

Hi @sanjanabalaji 

 

What are you comparing it to?  There's only 1 screenshot here.  Does the screenshot you provided depict what you want to see?  How are you building the menu?

 

Do you see the same with different browsers?  

 

Regards.

 

--Sharon

16-Pearl
March 26, 2021

@sanjanabalaji 

 

Following help center guide explains how you can configure container scrolling. 

 

Regards,

Sachin

5-Regular Member
April 7, 2021

Hi @sanjanabalaji 

 

If the previous response answered your question, please mark it as the Accepted Solution for the benefit of others with the same question.

 

Regards,

Toolika Dixit

9-Granite
April 29, 2021

Place this css in custom-css tab in Mashup

you can change the color and size of the scroll bar too...it worked for me.

 

 

body * ::-webkit-scrollbar {
width:5px;
height:10px;
}
/* Track */
body * ::-webkit-scrollbar-track {
background:#3c6380;
}
/* Handle */
body * ::-webkit-scrollbar-thumb {
background: #12243a;
}