Help > Layout & Coding Help > Post Reply     

Scrolls

Player Avatar
уαмαѕαωкι
July 17th, 2017 1:44:27am
3,512 Posts

So the last time I was coding all you had to do was put stuff like scrollbar-face-color:#FFFFFF;  directly in the div tag.....which I have discovered is no longer working.


Can anyone tell me how it's being done now? I have a scrollbox for my updates section but I want it to be looking nicer lol




dogs-cats.gif

 


View Comments 1


Player Avatar
Apollo 🏹 Appaloosas
July 17th, 2017 2:25:33am
949 Posts

::-webkit-scrollbar {

    width: 12px;

}

 

/* Track */

::-webkit-scrollbar-track {

 

background: #value;

}

 

/* Handle */

::-webkit-scrollbar-thumb {

 

background: #value;

}




 

View Comments 1