Quote:
Originally Posted by GeoffR
Now that there is plenty of space at the top and bottom of the page, I think the default settings for the ePub fixed top/bottom margins patch should be reduced to zero.
ePub fixed top/bottom margins:
Spoiler:
Code:
ePub fixed top/bottom margins:
- Enabled: no
- PatchGroup: ePub padding-bottom alternatives
- Description:
This patch sets the @page margin sizes in epubs to fixed custom values,
overriding any @page margin set in the book's CSS stylesheet. (But beware
that some books also set page margins in an XPGT stylesheet which are added
to any CSS @page margins, and those will not be affected by this patch.
See the "Ignore ePub book Adobe XPGT stylesheet (page-template.xpgt)" patch
in librmsdk.so.1.0.0.yaml for a way to remove the XPGT stylesheet margins.)
- FindReplaceString:
Find: "\x20padding-bottom: %1em !important;\n"
Replace: "}@page{margin:00px 00px 00px}body{"
# *** Replacement values start here, don't change anything above ***
- ReplaceString: {Offset: 0x0E, Find: "00px", Replace: "00px"} # TOP MARGIN
- ReplaceString: {Offset: 0x18, Find: "00px", Replace: "00px"} # BOTTOM MARGIN
#
# Minimum LEFT/RIGHT MARGIN: (This margin will overlap the left/right margin
# set with the adjustment slider, not add to it.)
- ReplaceString: {Offset: 0x13, Find: "00px", Replace: "00px"}
|
Is this final (i.e. do you want this added to the zips)?