I have been converting job aids from Word docs to HTML and I am having a few issues with the screen reader I am using (Jaws 16). The ordered list I have set with CSS to present as "Step 1", "Step 2". The screen reader however does not recognize this and does not read the "Step 1" part of the list.
Is there a way to do this or am I looking at something a little more manual to have the screen reader call out whats needed correctly?
ol{list-style-type: none; counter-reset: elementcounter; padding-left: 0;}
li:before{content: "Step " counter(elementcounter) ". "; counter-increment:elementcounter; font-weight: bold;6px}
<ol>
<li>Open fridge</li>
<li>locate beer</li>
</ol>