0 votes
by (2.9k points)
Hi, I am wondering if there is a way to change the interface for sugarcube.

My goal is to make the title into a link and to remove the save and restart button.

I have no clue how to use the StoryInterface passage so I've come here.

1 Answer

0 votes
by (23.6k points)

To remove the save and restart button, go to your css-stylesheet and enter:

#menu-core {
	display: none;
}

Changing the title into a link won't be that easy though. Best way I found to accomplish this is to have the following in your starting passage or maybe your StorySubtitle Passage or somewhere similar:

<<timed 100ms>><<replace "#story-title">>[[test]]<</replace>><</timed>>

 

...