javascript - how to increase the size of scroll track in jquery jscrollpane -
i changed size of scroll bar in jscrollpane
$(function() { $('.scroll-pane').jscrollpane({ verticaldragminheight: 30, verticaldragmaxheight: 32, horizontaldragminwidth: 40, horizontaldragmaxwidth: 40 }); });
but not able change size of track has.
pfb image
try use below updated css..
.jspverticalbar { position: absolute; top: 0; right: 0; width: 27px; height: 100%; }
Comments
Post a Comment