Twine Tutorial

HOW TO REMOVE THE SIDEBAR\

This tutorial shows how to remove the sidebar from the game in Sugarcane Format.

  1. In twine, open the stylesheet by double-clicking the box. twinetutorial1

2. This is how the style sheet looks using CSS to edit the design in a very simple way. twinetutorial2

3. To remove the side bar, using CSS, use the code

#sidebar{ display: none;

}

  1. twinetutorial3

4. This is what the game will look like without the sidebar.twinetutorial4

Leave a Reply