View Single Post
Old 03-26-2012, 06:31 PM   #2
jackie_w
Grand Sorcerer
jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.
 
Posts: 6,252
Karma: 16544692
Join Date: Sep 2009
Location: UK
Device: ClaraHD, Forma, Libra2, Clara2E, LibraCol, PBTouchHD3
You can do it by adding a large margin-top to the css for the tag/class you are using for your chapters e.g.

If you view the code in Sigil and your chapter heading look like
Code:
<h2>Chapter 1</h2>
then edit the css file to have something like the following (make the 6em bigger/smaller to taste).
Code:
h2 {margin-top: 6em;}

If the chapter headings are more like
Code:
<h2 class="chaphdg">Chapter 1</h2>
then edit the css file to have something like
Code:
.chaphdg {margin-top: 6em;}
or perhaps
Code:
h2.chaphdg {margin-top: 6em;}
jackie_w is offline   Reply With Quote