After all It will not move.
I have to delete the button use hide element button.
But when another place edit, the button I want to hide appear again.
import wixWindow from ‘wix-window’;
$w.onReady( function () {
if(wixWindow.formFactor === “Mobile” &&
wixWindow.rendering.renderCycle === 1) {
$w(" #button5 “).hide();
$w(” #button7 ").hide();
}
} );
