0
HTML tags not working?
For some reason the <ol start="#"> tag is being ignored. Is there something limiting HTML tags?
See the tags below.
And see how the list starts at 1 instead of following the tag.
Thanks.
3 replies
-
Hi Andrew , thanks for your question! This is due to the fact there are CSS styles in the system that display a customized number for ordered lists, overriding the default HTML style. Try using the following code instead:
<ol style="counter-reset: li;">
Which should look like this:
Let me know if that helps. Thank you!