Hi

Do you mean the check circle icon for <li> tag?

You used editor when editing article but this default editor often strips out HTML tags like this <i> tag so that icon did not show up
<i class="far fa-check-circle"></i>

I just added for you as sample:

You can add the same for other <li> tags


Hello and thank you very much
The normal points would be enough for me here.

    yes, very much. I want the regular points, not the little bits.

    You can change the FontAwesome class a bit:

    <i class="far fa-check-circle"></i>

    change to:

    <i class="fas fa-circle"></i>

    and use the following custom CSS code to style for it:

    .item-page ul li i {
        color: #000 !important; /*change the color of the points*/
        font-size: 10px !important; /*change the size*/
    }

    Hope this helps.

    Write a Reply...
    You need to Login to view replies.