Not sure what you mean by that top-margin issue.
If you mean page breaks are omitted after h1, h2, h3, try the following in your epub.css:
h1, h2, h3, .title, .title1, .title2, .title3 {
page-break-before: auto;
page-break-inside: avoid;
page-break-after: auto;
}
|