For those who find that the footer text is too close to the bottom [at least on the Glo], I gave something a little try and it's worked beautifully for me, so I thought I'd share here.
This isn't rocket science or anything, but noticing that it's all just plain old CSS, I thought I'd just add a bit of padding to the footer element, and it works perfectly. This will probably only work with the V7 syntax for the footer resizing since it leaves plenty of space for additional text.
Code:
* {
height: 30px;
font-size: 20px;
qproperty-footerMargin: 40;
padding-bottom: 8px;
}
I added in the
qproperty-footerMargin parameter because the chapter titles wouldn't show in kepubs without it. 40 is based off the new proportions W.R.T. the default values: 110 * (30 / 82) ~= 40. Lastly I added a bit of padding to the bottom. Around 8px looks good on the Glo (at least to my eyes).
This has allowed me to gain a couple lines of text while maintaining fairly decent asthetics on the footer element. If you're on a Glo, the actual code you'd want to use in the patcher is:
Code:
* {\n\theight: 30px;\n\tfont-size: 20px;\n\tqproperty-footerMargin: 40;\n\tpadding-bottom: 8px;\n}