Re: Font size in Minimal
Posted:
8 Apr 22, 20:12
in response to: Laza
It's because you're using rem font sizes in the album, and by definition, rem font sizes relate to the font size of the root of the document, which is html, not body. It's one of the more obscure points of CSS, something I didn't know until I went hunting for it!
The setting isn't working in Minimal 8.1, either. It works in Minimal 7.2, where the ${albumFontSize} is applied to html.
Re: Font size in Minimal
Posted:
9 Apr 22, 14:02
in response to: Laza
Laza wrote:
I almost never use html for CSS rules....
Neither do I, other than making width and height 100%. It's very strange to be putting a font-size on html, since there should never be any content there - that's what body is for! But for rem, that's what the standard requires. That was news, to me!