Hi,
I updated this file: /templates/uber/js/script.js this script:
jQuery(document).ready(function($) {
$('a.smooth-scroll').click(function() {
var href = $(this).attr('href');
if (href.includes('#')) {
var target = $('#' + href.split('#')[1]);
var affix = $('.sections-wrap').children().first().offset().top;
var header = $('.uber-header').outerHeight();
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top - header - ( affix ? affix : 0 )
}, 500);
return false;
}
}
});
});
and add the 'smoth-scroll' class to each menu item of Produits item (screenshot), you can take a look now.