Quote:
Originally Posted by wlashack
I have problems with all bulleted and numbered lists. They do not appear in ebook readers.
|
You have to open the EPUB using Sigil (or Calibre's Editor) and see the actual HTML+CSS.
If you could go into the book and grab the HTML of a broken list and show the CSS, perhaps we could help some more.
It's very likely they are using CSS that isn't supported on ereaders (content: counter, list-style-type, :before, etc. etc.).
Side Note: Support for lists in ereaders are........ poor. Which is why many of us recommend hardcoding numbers into the text itself:
Code:
<p>1. One</p>
<p>2. Two</p>
<p>3. Three</p>
instead of:
Code:
<ol>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ol>
- One
- Two
- Three