Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

I LOVE this template! It's so nice and clean and really easy to work with/customize to give it its own feel. 

I have a (hopefully) quick question. I'm new to using SugarCube, but I was wondering if there was a certain way for the header-text (i.e. the title and the author name) to not load on a certain page. For example, if there was a passage dedicated to just the title, to not have it duplicated above, but when you go to the next passage, the header-text shows up and stays there? Sorry if this is worded weirdly, like I said, I'm new to all this stuff!

(3 edits) (+1)

I'm sorry it took me so long to see this! Thank you so much!! And yes, if you haven't already found an answer for this, it's totally possible with Twine's tagging system. I'm actually working on this in another template I'll be sharing hopefully soon, but I'm happy to go over how to do it here too<3

First, you're going to add a tag to the passage you want the header hidden. In this example, I'm using the tag 'start':

Then you'll go into your Stylesheet and add:

.start .header {
  display: none;
}

And you'll end up with this:

No header! Hopefully this helps:) Happy coding and I can't wait to see what you come up with!