View Single Post
Old 11-21-2011, 09:10 PM   #2
dwig
Wizard
dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.dwig ought to be getting tired of karma fortunes by now.
 
dwig's Avatar
 
Posts: 1,613
Karma: 6718541
Join Date: Dec 2004
Location: Paradise (Key West, FL)
Device: Current:Surface Go & Kindle 3 - Retired: DellV8p, Clie UX50, ...
Quote:
Originally Posted by sdm1130 View Post
...

Code:
<ol>
   <li></li>
   <li>
       <ul>
           <li></li>
       </ul>
   </li>
   <p>
   <li></li>
</ol>
When I view this on the Kindle (for iPad app, if that matters), the indentation works as I want it to, but the <p> has a number in front of it.
because the top level list is an ordered list (<ol>); try using an unordered list (<ul>) like your second level list.

Quote:
I've tried so many different solutions (so many that I'm having a hard time remembering them all) and nothing seems to be working. Can someone point me in the right direction?
You might try using nested <blockquote> tags:

Code:
<P> blah blah</p>
<blockquote>
    <p> blah </p>
        <blockquote>
             <p> blah </p>
        </blockquote>
 </blockquote>
AFAIK, there's no control of the amount of indent in MOBI's implementation of Blockquotes.
dwig is offline   Reply With Quote