I start loading the website start block does not appear in right
I want the toolbox to not overlap with workspace to prevent any block from overlap with it.
var myWorkspace = Blockly.inject('myBlocklyDiv', {scrollbars: false});var newBlock = demoWorkspace.newBlock(blockName);
newBlock.initSvg();
newBlock.render();var newBlock = Blockly.Xml.domToWorkspace(Blockly.Xml.textToDom(
 '<xml>' +
 '  <block type="start" x="10" y="10"></block>' +
 '</xml>'
), demoWorkspace);I want to change the coordinate of whole workspace not just the block so that any new block come do not go away from the start block
for the second issue make scrollbars false does not solve the problem.

and block still could be behind the toolbox after change the code to
new block I choose from toolbox go left as in this picture
and block still could be behind the toolbox