View Single Post
Old 08-08-2012, 04:07 PM   #6
JSWolf
Mobile Reader Geek
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: 34,227
Karma: 13801376
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Sony Reader PRS-650, iPad
Quote:
Originally Posted by AThirstyMind View Post
Here is the h1 Chapter heading Style I used. Of course in the Calibre generated Mobi, it was fine... but Epub converting through KindlePreviewer/Kindlegen is where the huge h1 font came in.

h1
{mso-style-link:"Heading 1 Char";
margin-top:48.0pt;
margin-right:0in;
margin-bottom:24.0pt;
margin-left:0in;
text-align:center;
page-break-before:always;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
An even better way to do it is...

Code:
<h2>Chapter One</h2>
Code:
h2 {
font-family: sans-serif;
margin-top: 1em;
margin-bottom: 1em;
text-align: center
}
You will find h2 is a much better size.
__________________
JSWolf is offline   Reply With Quote