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 Freezes on Windows 8 (metro) and Windows Phone Reply To: Freezes on Windows 8 (metro) and Windows Phone

#2591
Vladimir
Keymaster

Hi,

Can you please try to replace the script in “include.js”:

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

    });

It seems that niceScroll script is responsible for this issue.

Vladimir