Skip to content

Questions#

Warning

You are reading documentation for Twine 1. This is maintained for archival purposes only.

How do I remove all Jonah passage titles?*#

This CSS sample makes the passage titles invisible:

.passage .title { display: none; }

How do I remove all Jonah passage titles but the current one?#

This CSS sample makes all passage titles invisible except for the current one:

.passage:not(:last-child) .title { display: none; }