View Single Post
Old 08-23-2011, 01:46 AM   #8
Toxaris
Wizard
Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.
 
Toxaris's Avatar
 
Posts: 4,520
Karma: 121692313
Join Date: Oct 2009
Location: Heemskerk, NL
Device: PRS-T1, Kobo Touch, Kobo Aura
There are no fixed pages, it is reflowing. If you need to make changes, search for the page you need to edit (search for the text) and make your changes. The book has probably a specific xhtml document for each chapter.

Font sizes are best described in the unit em or percentages and can be set in a stylesheet. Define a style for your paragraph with the font size in it and make your paragraph use that style.
An example:

In your stylesheet:
Code:
.bigfont {
 font-size: 150%
}
In your xhtml:
Code:
<p class="bigfont">Your text here.</p>
Toxaris is offline   Reply With Quote