I want to eliminate the menu at the bottom right

I want to eliminate the menu at the bottom right
Is there any good way?
WS000000

You can do it with the menuVisible property: GitHub - shapespark/shapespark-viewer-api: JavaScript API for interacting with the Shapespark 3D scene.

I want to erase the part circled in blue.
Is it possible?

var viewer = WALK.getViewer();
viewer.menuVisible = false;

InkedWS000000_LI

Add the following style to the body-end.html:

<style>
  #menu-bar {
    display: none;
  }
</style>