Quote:
Originally Posted by Valloric
You can easily do this. Switch to Code View, then find your heading. Change this:
Code:
<h1>Chapter 1: Blah</h1>
to this:
Code:
<h1>Chapter 1: <span style="font-size: 150%">Blah</span></h1>
I'm assuming you'r using H1 for your heading, but it works just as well with any other heading level (or any other tag for that matter). The <span> will change the size of the text inside it. Feel free to use a different percentage.
|
And if you want
chapter 1
Blah
as in your original example you can use the <br> tag to split the line. Since it is not a new paragraph Sigil will assemble it into one line in the TOC even though it is two in the document.
Dale