I want to change the font size of a title. I have managed to change the font with google fonts: (font: "Raleway-Dots")[mytextere] But I want to make the text much bigger. Is there a way to do this, I haven't seen it in twine2.neocities.org
(You need to state which Story Format you are using because answers can change depending on it. I am going to assume it's Harlowe)
You change a font's size by using the font-size CSS property.
I did not find a macro for doing this while looking at the Harlowe source code but I did determine that because of the way the (font:) macro is implemented you can make (trick) it do what you want. (note: you can replace the 200% below with any valid font-size value.)
(font: "Raleway-Dots;font-size:200%")[Your Text Goes Here]
Comments
You change a font's size by using the font-size CSS property.
I did not find a macro for doing this while looking at the Harlowe source code but I did determine that because of the way the (font:) macro is implemented you can make (trick) it do what you want.
(note: you can replace the 200% below with any valid font-size value.)