Support Forums for LiveMesh Themes & Plugins › Forums › Appdev Theme Support › Scroll bar – can it appear at all times instead of dissapear? › Reply To: Scroll bar – can it appear at all times instead of dissapear?
November 30, 2013 at 6:16 am
#3090
Moderator
I changed the file on your server. You need to replace
if (!mo_options.disable_smooth_scroll) {
$("html").niceScroll({
zindex: 99999,
boxzoom:true,
touchbehavior:false,
scrollspeed: 60,
mousescrollstep: 40,
smoothscroll: true,
cursorborder: "1px solid #424242",
horizrailenabled: false
});
}
with
if (!mo_options.disable_smooth_scroll) {
$("html").niceScroll({
zindex: 99999,
boxzoom:true,
touchbehavior:false,
scrollspeed: 60,
mousescrollstep: 40,
smoothscroll: true,
cursorborder: "1px solid #424242",
autohidemode: false,
horizrailenabled: false
});
$('#ascrail2000').show();
}