I want to display a link button fixed at the bottom of the window when viewing on a mobile device in wix Editor

Question:
In wix Editor, I want to fix a link button at the bottom of the window when displayed on a mobile device, but even when I write “fixedBox.style.position = ‘fixed’;” in velo, an error occurs and it doesn’t work.

Product:
wix Editer. velo.

What are you trying to achieve:
In wix Editor, I want to fix a link button to the bottom of the window when displayed on a mobile device, but even when I write “fixedBox.style.position = ‘fixed’;” in velo, an error occurs and it doesn’t work.

See the code below for details.

const fixedBox = $w(‘#box62’);
fixedBox.style.position = ‘fixed’;
fixedBox.style.top = ‘0px’;
fixedBox.style.left = ‘0px’; //
fixedBox.style.width = ‘100%’;
fixedBox.style.zIndex = ‘1000’;
});

What have you already tried:
I tried the following, but it didn’t solve the error:

1->
fixedBox.fixedPosition = {x: 0, y: 0};

2->
fixedBox…setAttribute(‘style’, ‘position: fixed; top: 0; left: 0;’);