Yoast SEO How to is countign bad

Hello,
i am using how to block from yoast seo and it is counting < ol > badly. It counts span also. Here is the view: https://domo-okna.cz/jak-namontovat-okno/ could you please take a look why?

Hello @Jakub_Bogdan,

You can fix it with the CSS:

ol, ul, dl {
    list-style-type: initial;
}

or

ol, ul, dl {
    list-style-type: none;
}

That’s not the solution. I want to have there counting list and it is counting also the sub div in < li >
the html is:
<li class="schema-how-to-step" id="how-to-step-1619954748371"><strong class="schema-how-to-step-name">Vyndání okna z rámu</strong> <p class="schema-how-to-step-text">Před samotnou montáží okna je třeba vyndat okno. Sundejte plastové krytky pantů. Zespodu horního pantu vytáhněte šroubovákem kovové čepy. Případně i v druhém rámu pokud máte dvoukřídlé okno.</p> </li>

So it should see like this:

  • Vyndání okna z rámu

    Před samotnou montáží okna je třeba vyndat okno. Sundejte plastové krytky pantů. Zespodu horního pantu vytáhněte šroubovákem kovové čepy. Případně i v druhém rámu pokud máte dvoukřídlé okno.

  • not count "vyndání" and "před samotnou..."

    Please try to use the CSS:

    p::marker {
        content: "";
    }
    li.schema-how-to-step {
        list-style-type: initial;
    }
    

    Video:

    I had to add this to css. My goal was to edit countign not hide counting:
    ol {
    counter-reset: section;
    list-style-type: none;
    }
    ol li {
    counter-increment: section;
    }
    ol li:before {
    content: counters(section, “.”)". ";
    }

    If there’s another problem, let me know right away. Have a nice day :slight_smile: