I'm trying to adjust the passage spacing in the Jonah story format so that passages are displayed without any spacing, giving the text the appearance of a continuous story. I've added the CSS below to prevent display of passage titles and remove choices after player makes a decision, but the passages still have 2 lines worth of spacing between them. Any suggestions would be appreciated. Thanks.
#passages {
position:relative;
padding-bottom: 0em;
}
.passage {
background-color: #f8f8f8;
font-size: 1.75em;
line-height: 150%;
margin-bottom: 0em;
}
.passage .title { display: none; }
.disabled { display:none; }
Comments
The following CSS will also 'hide' the br elements, place it in your stylesheet after your .disabled selector: note: I'm sure you are aware of this but by 'hiding' the passage title line you are also removing the readers ability to save their progress through your story. If your story is long you may want to think about adding some other means for them to save.