Howdy, Stranger!

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

Hiding the sidebar on my first passage ?

Hello!

I am currently working on my first Twine and it's really fun. I just need some help with something.
I have created some sort of "splashscreen" for my game, composed of a welcoming sign, and a continue button. The button is centered, but not the big sign. I can't get the button to stay centered above the big sign...

Check it out here : http://josselin.colletta.org/clamecy/index.html

And I think it's because the sidebar is pushing the big sign sideways.
I was wondering if there was any way to hide the sidebar for this very first passage, and I can't find the answer online.

I am using Harlowe on Twine 2.

Thank you for your help,
Josselin

Comments

  • The Basic Harlowe Passage Tag Based Styling thread describes how to selectively style passages using a combination of passage tags and CSS selectors based on those tags.

    Assuming that the tag you use to hide the side-bar in the first passage was named no-sidebar then the CSS selector and rule needed would be: (goes in the Story Stylesheet area)
    html.no-sidebar tw-sidebar {
    	display: none;
    }
    

Sign In or Register to comment.