Navigation


 Online publications


 Go back to the forum

Free Codes   

Change scrollbar design

System32 | Published on the sun Nov 27, 2022 9:02 pm | 55 Views

Hello fellas,

This tutorial is going to be quite simple. 
Go to CP > Display > Colors & CSS > CSS Stylesheet and paste this:

/* width */
::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

In the end you will get your scrollbar to look like this:

References:

Code taken from: https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_custom_scrollbar

Cheers

About the author