MyBB Community Forums

Full Version: Edit color/style scrollbar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello guys,
i need ur help... I would like to edit the colour/style of the scrollbar
of my forum.

example:

[Image: 3VoMG6u.png]



But i dont know how to do it.

Can u help me, please? Rolleyes
Thanks in advance
Styling scrollbars is only avilable in Chrome.

You can use:

    ::-webkit-scrollbar {
    width: 7px;
    height: 1px;
}

::-webkit-scrollbar-thumb    
{
    height: 1em;
    background: #ccc -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgb(240, 240, 240)), to(rgb(250, 250, 250)));  
    -webkit-border-radius: 5px;  
} 

::-webkit-scrollbar-button:end:increment {
   background:url(../images/down.png) center no-repeat;
}

::-webkit-scrollbar-button:start:decrement
{
   background:url(../images/up.png) center no-repeat;
}

The above CSS gives everything you need to style scrollbars, but ONLY for chrome.