You need to set list-style-type of nested OL to “lower-alpha” something like
OL OL {list-style-type: lower-alpha} this will automatically set nested list styling to lowered alphabetical (a.. b.. c.. etc).
for more help refer: https://www.w3schools.com/cssref/pr_list-style-type.asp
Hope this helps
Manoj Soni
]]>Please forgive my lack of CSS knowledge, but are you saying that I can define what type of lists, sub-lists, etc to use for the global document instead of having to add “ol type=”a” to the beginning of each sub-list?
Also, how would I best address the other issue were if I include an image the list numbering resets? Currently, I’m having to edit CSS code to the beginning of each affected to set the number to what it should be.
Thank You
]]>1. Yes, you can create styling for global document using CSS instead of giving styling to each individual lists.
2. For the issue where once you break the list and add image, number restarts because you are ending the list , instead add image within the
and dont break the list with this way you will preserve numbering.
Regards
Manoj Soni