How do you remove the undo arrow?

I am using Harlowe 3.1 within Twine, and I am finding no results when searching for this. I find the undo arrow highly annoying while playing the game, and I wish to remove it. Any help?

To hide only the undo/redo buttons, you may use the following style rule: (goes in Story Stylesheet)

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

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

tw-sidebar {
	display: none;
}

Blockquote
tw-sidebar .undo, tw-sidebar .redo {
display: none;
}
Hey :slight_smile:
I am using Harlowe 3.2.1 but this code does not work for m, I can delete all of the sidebar but I’m trying to keep it and remove only the undo and redo button :confused:

I know this may be late but this isnt working for me im using harlowe 3.2.2

Harlowe has changed the markup of its undo/redo buttons.

The following CSS placed into your Story Stylesheet should work:

tw-icon[title="Undo"], tw-icon[title="Redo"] {
    display: none;
}