Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter difylos

    (@difylos)

    The problem was the jquery.nav.js ver=2.2.0
    now with the jquery.nav.js ver=3.0.0 is working fine.

    #go-top was not working either so i changed the

     $('#go-top, .next-page').localScroll({
            offset: {
            top: -headerHeight
         }
        });

    with this:

    $("#go-top").click(function() {
    $("html, body").animate({ scrollTop: 0 }, "slow");
    return false;
    });

    on custom.js

    • This reply was modified 8 years, 6 months ago by difylos.
    • This reply was modified 8 years, 6 months ago by difylos.
Viewing 1 replies (of 1 total)