Sticky Element on right side of screen

Hi, anyone knows an (easy) way to do a sticky element on the right side of the screen, for example an icon with text ( callback service ) . Then open a modal for the callback service…
thanks
tom

Maybe something like this.
Add this code to your header …

<style>
.sticky-element {
	position: fixed;
	top: 0;
	right: 0;
	margin-right:15px;
	margin-top:15px;
}
</style>

… and put a div (with a button, or whatever inside) somewhere on the canvas. Change the margins accordingly to your needs.

1 Like

Hi, thanks … I try that before. But I forgot to set the bloc edge to edge and disable the gutter :crazy_face:

thanks for your help
tom