Actually, the best way to format that chapter heading would be like this:
<h1><span class="chapternum">ChapterNumber </span>Chapter Name</h1>
then in the css you would have
.chapternum{display:block;}
That way, it should just display normally in a TOC with no line breaks. The css "display" setting forces a line break after that element.
|