> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://help.teleporthq.io/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# 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>
```
