Thread: Unusual ID
View Single Post
Old 08-08-2012, 04:26 PM   #3
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,803
Karma: 146918083
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
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
}
JSWolf is offline   Reply With Quote