Well, any link to a section will have a Webflow scroll to section behaviour on click.
To disable that, just paste this code in Page Footer Code
<script>
$('.link-item').click(function() {
return false;
});
</script>
Well, any link to a section will have a Webflow scroll to section behaviour on click.
To disable that, just paste this code in Page Footer Code
<script>
$('.link-item').click(function() {
return false;
});
</script>