Scroll page down to container

I’m making a product configurator where new containers are shown (with motion) when a step is completed. I want the previous steps to be visible, so I can’t use a View Container. Is there a way I can scroll the page down to a specific section? Or another way to put the next container in focus/centered so that the user doesn’t need to scroll down to the next container?

I think you can set a unique Element ID on each of these containers and combine it with Element.scrollIntoView() in a Run Code -action node.

It might work :smile: but never tried it before

You can also have a look at this Showroom example. What’s demonstrated here is scrolling to the top of the page, but you should be able to achieve what you want with very similar logic.

Thanks for your suggestions!