Howdy, Stranger!

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

Remove Saves and Restart Options

So i have created my own custom story menu that fulfills all of the options necessary for functionality however the saves and restart options preloaded into sugarcube are only going to cause confusion for users. How do i remove the saves and restart menus, or at least disable their visability?

Comments

  • The CSS you use depends on if you are using SugarCube 1.x or 2.x, and if 2.x it also depends on if you have custom Settings.
    Add one of the following rules within your story's Story Stylesheet area:
    /* SugarCube 1.x */
    #menu-saves, #menu-restart {
    	display: none;
    }
    
    /* SugarCube 2.x without custom Settings. */
    #menu-core {
    	display: none;
    }
    
    /* SugarCube 2.x with custom Settings. */
    #menu-item-saves, #menu-item-restart {
    	display: none;
    }
    
  • Thanks so much, Ive been youtubing and googling for 48 hours working on my new character creator game and you just helped make one of the greatest changes in functionality. Thank you so much for helping me out.
Sign In or Register to comment.