Howdy, Stranger!

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

Removing the undo and redo buttons in Harlowe.

Is there some way to remove/disable the arrows that allow the player to move backwards and forwards through areas they've previously visited? Using the Harlowe 1.0.1 format in Twine 2.0.1.

Comments

  • Worked out a 'sort of' solution.

    I simply entered:

    tw-sidebar{
    visibility: hidden
    }
    into the stylesheet and it seems to have made the buttons inaccessible.
  • Your solution only makes them invisible but they are still taking up room, the following will make it so they are not displayed. Display vs Visibility

    tw-sidebar tw-icon.redo {
    display: none;
    }
    tw-sidebar tw-icon.undo {
    display: none;
    }
  • Thanks! I'm not super familiar with CSS so I just kinda fiddled until I got something that did more or less what I wanted.
  • Thanks, very useful!
  • Can someone help me? What if I just want to remove the undo/redo buttons only on certain passages?
    greyelf wrote: »
    Your solution only makes them invisible but they are still taking up room, the following will make it so they are not displayed. Display vs Visibility

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

  • How can you remove the undo/redo buttons only on specific passages?
Sign In or Register to comment.