PileOfMeatballs

Help Changing Passage Spacing in Jonah Format

Recommended Posts

So after exploring some alternatives, I've decided to stick with Twine for the moment to write my IF.  However, I've got a problem.

 

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; }

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now