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

Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X

How to reduce size of scrollbars

sanjanabalaji
11-Garnet

How to reduce size of scrollbars

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

 

1 ACCEPTED SOLUTION

Accepted Solutions

@sanjanabalaji 

 

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

 

Regards,

Sachin

View solution in original post

4 REPLIES 4

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

@sanjanabalaji 

 

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

 

Regards,

Sachin

tdixit
13-Aquamarine
(To:SachinSharma)

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

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

Top Tags