View Single Post
Old 04-10-2018, 10:16 AM   #3
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,306
Karma: 13057279
Join Date: Jul 2012
Device: Kobo Forma, Nook
Quote:
Originally Posted by wlashack View Post
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>
  1. One
  2. Two
  3. Three

Last edited by Tex2002ans; 04-10-2018 at 10:20 AM.
Tex2002ans is offline   Reply With Quote