Howdy, Stranger!

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

How do I shrink the margin, expand text area?

I'd really like to expand the viewing area for text, meaning shrink the sidebar or margin area. I removed the sidebar in the "Edit Story Stylesheet" section, but the margin seemed to stay the same width, at least to my eye. On my phone it looks like too much wasted space in both the right and left margins, i.e, the text area could be wider. I know it's default but I'd like to change it. Thanks.

Twine v. 2.0.11
Harlow v. 1.2.2

Comments

  • The left and right side margins are a result of the tw-story element having a width of 60% and being centred via it's left/right margin being set to auto.

    Simply increasing the width of the tw-story element will cause the side margins to decrease in size, as shown by the following CSS example which should be places within your story's Story Styleeheet area.
    tw-story {
    	width: 70%;
    }
    
  • Sweet! Thanks elf! Soon as I remember how to mark this answered I will do so.
Sign In or Register to comment.