How can I create a smooth "scroll to" transition?
You can add a custom code inside a style tag to change the effect of scrolling.
To do this, go to Project Settings -> Custom Code -> Head and add the following code.
<style>
html {
scroll-behavior: smooth;
}
</style>
Updated on: 11/08/2025
Thank you!