Hi Patrick,
To fix it, you can add the code below in Theme Options > JS
jQuery(document).ready(function($) {
var adminbarHeight = $('#wpadminbar').outerHeight();
var navbarFixedTopHeight = $('.x-navbar-fixed-top-active .x-navbar').outerHeight();
$('a[href*="#"]').off('touchend click').on('touchend click', function(e) {
e.preventDefault();
var href = $(this).attr("href");
var hash = href.substr(href.indexOf("#"));
$('html, body').animate({
scrollTop: $(hash).offset().top - adminbarHeight - navbarFixedTopHeight
}, 650);
return false;
});
});
Hope that helps.