View Single Post
Old 08-08-2012, 04:07 PM   #6
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: 73,866
Karma: 128597114
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
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