Support Forum

For all questions related to themes and plugins!

Enter search keyword e.g. "footer color".

  • Registration is Required

    Registration is required to post questions to support forum. ThemeForest buyers also need to obtain Purchase code to be able to post on forum.

    Please read here how to obtain Purchase code.

Private: Home Forums HTML Templates Elvyre Retina Ready HTML5 Template Menu buttons do not work with Firefox in mobile phones Reply To: Menu buttons do not work with Firefox in mobile phones

#3372
Vladimir
Keymaster

Hello Jorge,

We find solution for this problem. Nicescroll script (the one that styles scrollbar) is causing a lot of issues so I removed it on your site and everything is working fine now.

If anyone else has this problem, here are instructions for removing Nicescroll.

Script can be removed in “js / include.js”.
Replace:

$("html").niceScroll().scrollstart(function(event) {
        if (!is_touch_device() && event.end.y > 0) {
            set_static_header(1);
        }
    }).scrollend(function(event) {
        if (!is_touch_device() && event.end.y == 0) {
            set_static_header(0);
        }
    });

with this:

$(window).scroll(function (event) {
        if (!is_touch_device() && $(window).scrollTop() > 0) {
            set_static_header(1);
        } else {
            set_static_header(0);
        }

    });

Vladimir