Archived topic
Lists with letters
5 replies · Started by _blank on February 13, 2018
Hi,
In WordPress editor (text mode) I try to add a list with letters by using <ol type="a">, but the front-end shows numbers anyway. How to correct it?
Hi there,
Make sure the syntax is correct: https://www.w3schools.com/html/tryit.asp?filename=tryhtml_lists_ordered_lcase
It is.
In the visual editor the following code gives a list with letters:
<ol type="a">
<li>last wills and endowments,</li>
<li>contribution of legal persons,</li>
<li>revenue from collections and public events</li>
<li>revenue from movable and fixed property,</li>
<li>revenue from Foundation economic activities.</li>
</ol>
which in the front-end results in a list with numbers. See here: http://ispan.waw.pl/fs/en/the-slavic-foundation-statute/
Hi there,
This should help: https://wordpress.org/support/topic/ol-list-type-not-showing-properly/
Let me know :)
The following works to show lowercase letters:
<ol style="list-style-type: lower-latin;">
Thanks
You're welcome :)