Great stuff as always, thank you. Is there any way to make the font size change in the Simple Book Template apply to the dialog pop ups as well as the passages? I get how css works (mostly) but that js stuff not so much.
Viewing post in 100% Good Twine Sugarcube Templates comments
There are two ways: linking that font setting to a css class (i.e. like the font type but in the css you change font-size instead of font-family) or add something like:
var sizepopup = document.getElementById("ui-dialog");
sizepopup.style.fontSize = settings.fontSize;
Fair warning: it changes right away and the popup may/will probably look weird until closed/reopned.