Home / Forums / WoodMart support forum / Unordered list arrow turned to dot after update / Reply To: Unordered list arrow turned to dot after update
Home › Forums › WoodMart support forum › Unordered list arrow turned to dot after update › Reply To: Unordered list arrow turned to dot after update
marika.kusnire
Thanks for the info, Serg! Will be usefull for my other site as well! 🙂
At the start code You gave didn’t work – all the bullets was changed to numbers f113.
Asked Chat gpt to help and there was missing \ before f113. So the end css code, which I used and was working:
.unordered-list {
list-style: none;
–li-pl: 0;
}
.unordered-list ul, .unordered-list ol {
margin-inline-start: 20px;
list-style: none;
–li-pl: 0;
}
.unordered-list li:before {
content: “\f113”;
font-family: “woodmart-font”;
margin-inline-end: 10px;
font-size: 8px;
}
Thanks and have a nice day! 🙂