Hi all, thanks for all the work you do with the patches! A few firmware versions ago, I asked here if it was possible to get a patch to reduce the font size of the text in the Kepub footnotes. Jackie_w (IIRC) then updated a patch that had been shared by another user previously and didn't work anymore:
Code:
Pop-up footnote main text font-size:
- Enabled: yes
- Description: |
Change font-size of pop-up footnote main text (KePub only).
(based on the original by jcn363)
Note: Be aware that making this change will probably also change font-size
in various other parts of the Kobo GUI
- FindZlib: "RegularTouchLabel {\n font-family"
- ReplaceZlibGroup:
Replacements:
# RegularTouchLabel Popup footnote main text
# Change Replace font-size as required for your Kobo model
#Touch/Mini
- Find: "RegularTouchLabel[qApp_deviceIsTrilogy=true] {\n font-size: 19px;\n}"
Replace: "RegularTouchLabel[qApp_deviceIsTrilogy=true] {\n font-size: 19px;\n}"
#Glo/Aura/Aura2
- Find: "RegularTouchLabel[qApp_deviceIsPhoenix=true] {\n font-size: 23px;\n}"
Replace: "RegularTouchLabel[qApp_deviceIsPhoenix=true] {\n font-size: 23px;\n}"
#AuraHD/H2O/H2O2
- Find: "RegularTouchLabel[qApp_deviceIsDragon=true] {\n font-size: 29px;\n}"
Replace: "RegularTouchLabel[qApp_deviceIsDragon=true] {\n font-size: 29px;\n}"
#GloHD
- Find: "RegularTouchLabel[qApp_deviceIsAlyssum=true] {\n font-size: 32px;\n}"
Replace: "RegularTouchLabel[qApp_deviceIsAlyssum=true] {\n font-size: 32px;\n}"
#ClaraHD
- Find: "RegularTouchLabel[qApp_deviceIsNova=true] {\n font-size: 32px;\n}"
Replace: "RegularTouchLabel[qApp_deviceIsNova=true] {\n font-size: 32px;\n}"
#LibraH2O
- Find: "RegularTouchLabel[qApp_deviceIsStorm=true] {\n font-size: 34px;\n}"
Replace: "RegularTouchLabel[qApp_deviceIsStorm=true] {\n font-size: 34px;\n}"
#AuraOne/Forma
- Find: "RegularTouchLabel[qApp_deviceIsDaylight=true] {\n font-size: 37px;\n}"
Replace: "RegularTouchLabel[qApp_deviceIsDaylight=true] {\n font-size: 37px;\n}"
I've kept using it for some time, but unfortunately with the new 4.20 firmwares it has stopped working again - it's successful in reducing the font size in other parts of the GUI, but the footnotes' text stays unchanged. I was wondering if there was a way to update it again? Thanks in advance!