Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! X
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 ?
Solved! Go to Solution.
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
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;
}