Pinning position when other content scrolls

Hi Guys,

I need to pin a button on the x and y axis while the other content around it scrolls up and down only. How will I get that to work.

The content is not responsive, just scrolls up and down

Have a look at

Hi Stephan!

You could also use CSS. Below in the code a class “go-top” is given a fixed property. Any elements assigned this class will not scroll with the page.

<style>
	.go-top{
		position: fixed !important;
	}
</style>