0 votes
by (120 points)
It seems really simple but I'm new to this program (had it for all of about 2 hours). I'm just curious if there is a way to make it so that once a link has been pressed to go to the next passage the player is unable to return to the previous passage. I noticed the back arrow that's present on the lefthand side of the screen.

1 Answer

+2 votes
by (68.6k points)

You'll probably want to hide either the undo/redo buttons or the entire sidebar.

 

To hide only the undo/redo buttons, you may use the following:

tw-sidebar .undo, tw-sidebar .redo {
	display: none;
}

 

To hide the entire sidebar, you may use the following:

tw-sidebar {
	display: none;
}

 

...