Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

How do i delete the back arrow and forward arrow when i make a game

How do i delete the back arrow and forward arrow when i make a game

Comments

  • You need to state which Story Format you are using when you ask a question, as answers can be different for each one.

    Harlowe
    Place the following CSS in your Story Stylesheet area, it will hide the Undo and Redo links.
    tw-sidebar {
    	display: none;
    }
    
    SugarCube 1.x
    Place the following Javascript in your Story Javascript area, it will disable the web-browser's Back and Forward buttons.
    config.disableHistoryControls = true;
    

    If you don't know where to find your Story Stylesheet or Story Javascript areas then I suggest you read the Adding Custom Javascript and CSS section of the Twine 2 Guide.
Sign In or Register to comment.