Quote:
Originally Posted by sdm1130
...
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.