Howdy, Stranger!

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

Size Of A Passage

I don't need this help right away, but does anyone know the width and height of a passage? That's only the writing; not including the title or tags. I just need to know so that when I'm creating my backgrounds I know what dimensions I need them.

Comments

  • edited August 2016
    You can find that out by using your browser's dev tools when running your game and looking at the width and height of the passage area that comes up.
  • Claretta wrote: »
    You can find that out by using your browser's dev tools when running your game and looking at the width and height of the passage area that comes up.

    Where are the dev tools?
  • Options menu next to the bookmark star in chrome, that brings up a menu with "more tools" as one of the options.
  • If you're using Sugarcube the size will default to your browser size. I would probably use a fixed size of your choice if you're going to use custom background images.
  • The size of mine is 960x272. Thanks!
  • Actually, no it isn't. How do I use these dev tools?!
  • You can use

    background-size: cover;

    in CSS to style images if the passage size keeps changing.
  • So, like this:
    html.main {
    background-image: url('nfjdsfnvskjbfnkdsfk');
    background-size: cover;
    background-repeat: no-repeat
    
Sign In or Register to comment.