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?

#3052
Nexus
Moderator

Hi,

It is a feature of he nicescroll plugin that we have used. But you can make the scrollbar always visible by changing the main.js file in the (theme/js) folder line 449. Please replace the existing code (from line 449 to 463) with the below code

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

    /* ---------------------------------- Drop-down Menu.-------------------------- */

Thanks!