Scroll to Element - Change from Smooth to Auto

I have used Scroll to an Element action and it works just fine.

However, I would like to scroll to be an instant ‘jump’ to the new location rather than a smooth scrolling.

I think I need to set scroll-behavior: auto; in some way but I’m not sure where or how I do this.

Can anyone point me in the right direction please?

Thanks - Roger

Yes, that smooth scroll is set by Bubble, as you’ve figured out.

You can change the code:

<style>
html {
  scroll-behavior: auto !important;
}
</style>

You can either do that at the page level with an HTML element or do it in the backend if you want it to scroll that way on the entire site.