Customize the scroll bar (scrollbar) with JScrollPane
tmirror
Customize the scroll bar (scrollbar) with JScrollPane
JScrollPane is a jQuery script that allows you to change the blog' scroll bar, ie the browser scrollbar.
Although we can use CSS to change it, the problem is that is not standardized, because with CSS we can make it work only in Chrome and Safari; and in the case of Internet Explorer it also has its own code but obviously it only works in that browser (I don't know which versions). So what we will do then is to give a new look to the scrollbar but by using jQuery, so the change will be visible in all browsers. Demo
You can see an example in this test blog where the scroll bar has a different shape and color. How to change the scrollbar on Blogger 1. Go to Template > Edit HTML and before </head> paste this code: <script src='//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js' type='text/javascript'/>
<style>
.jspContainer {overflow: hidden;position: relative;}.jspPane {position: absolute;}
.jspVerticalBar {position: absolute;top: 0;rig…