Reply To: Scroll bar – can it appear at all times instead of dissapear?

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?

#3090
Raghavendra
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();
    }