Quote:
Originally Posted by jackie_w
I think these residual "header" & "footer" whitespace areas when Show Title/Footer are both Off exist to accommodate the 'Quick Page Turns' feature.
The footer contains the 'change turning speed' slider and the header contains the 'position in book' progressbar.
|
That is interesting, because in nickel there is CSS for QuickTurnSlider with heights of 24px / 32px / 44px / 56px.
Has anyone tried changing that CSS to see if it affects the size of the page header / footer when Show Title / Show Footer options are turned off?
e.g. a patch for nickel:
Spoiler:
Code:
Set QuickTurn slider height:
- Enabled: yes
# Touch/Mini
- FindBaseAddressString: "QuickTurnSlider[qApp_deviceIsTrilogy=true]"
- ReplaceString: {Offset: 0x39, Find: "24px", Replace: "12px"}
- ReplaceString: {Offset: 0x4F, Find: "24px", Replace: "12px"}
# Glo/Aura/Aura2
- FindBaseAddressString: "QuickTurnSlider[qApp_deviceIsPhoenix=true]"
- ReplaceString: {Offset: 0x39, Find: "32px", Replace: "16px"}
- ReplaceString: {Offset: 0x4F, Find: "32px", Replace: "16px"}
# AuraHD/H2O/GloHD/Clara
- FindBaseAddressString: "QuickTurnSlider[qApp_deviceIsDragon=true]"
- ReplaceString: {Offset: 0x38, Find: "44px", Replace: "22px"}
- ReplaceString: {Offset: 0x4E, Find: "44px", Replace: "22px"}
# AuraOne/Forma
- FindBaseAddressString: "QuickTurnSlider[qApp_deviceIsDaylight=true]"
- ReplaceString: {Offset: 0x3A, Find: "56px", Replace: "28px"}
- ReplaceString: {Offset: 0x50, Find: "56px", Replace: "28px"}