Hi,
I'm trying to make this work:
<ul>
<li>First ul li
<ol>
<li>First ol li</li>
<li>Second ol li</li>
</ol>
</li>
<li>Second ul li</li>
<li>Third ul li</li>
</ul>
But the result in TT template is that also nested ol li items are shown in ol style, with bullets instead of numbers:
● First ul li
● First ol li
● Second ol li
● Second ul li
● Third ul li
Switching template with ?template=protostar or visualizing code as pure html in browsers everything works as expected:
● First ul li
1. First ol li
2. Second ol li
● Second ul li
● Third ul li
So I'm quite sure that this problem is caused by TT.
Would you be so kind as to verify and possibly correct the problem?
Thank you
Regards