Removing these page numbers ID tags is actually a very good idea as then the page number ADE displays is a lot more accurate to show the size of the ePub. You don't need to jump to an anchor point in the ToC since you would just be jumping to the top of the page in that chapter's XML.
Also, for most of your paragraphs, just use <p>text of the paragraph</p> and again, you will have more accurate page numbers. Just remember to proper define the p style.
for example...
p {
margin-top: 0;
margin-bottom: 0;
margin-right: 0;
margin-left: 0;
text-indent: 1.2em
}
And if you need to modify the paragraph style such as a paragraph with no indent, use...
<p class="noindent">text of paragraph</p>
.noindent {
text-indent: 0
}
|