Hello,
I have an HTML TOC that looks something like this:
I. – Title
II. – Title
III. – Title
IV. – Title
…
I'm trying to get the chapter numbers aligned by the endash as well as having the chapter title left aligned, if it wraps, after the endash. I have the chapter numbers in a span:
Code:
<div class="sgc-toc-level-2">
<a href=""><span class="num">XXXVII. – </span> Title</a>
</div>
Code:
.num { width:5.5em; text-align:right; float:left; padding-right:.5em }
It looks ok in ADE yet in iBooks, the chapter title wraps and begins at the left margin. A hanging indent doesn't seem to work.