Enumeration is not displayed. In the article it is supplemented with “<li>”, on the website this command is ignored.
For example: https://neu.hltlaser.ch/ueber-uns
Enumeration is not displayed
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.
tobiasdarin Let me know if you need any further assistance.
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.