Home › Forums › WoodMart support forum › Customize bulleted list › Reply To: Customize bulleted list
January 29, 2022 at 8:11 am
#348792

Aizaz Imtiaz Awan
Keymaster
Hello,
1) To change the icon of the list style try adding the following Custom CSS in the Global Custom CSS area under Theme Settings >> Custom CSS.
.wpb_text_column ul li::before {
content: "\f00c";
font-family: 'Font Awesome 5 Free';
font-weight: 600;
}
.wpb_text_column ul li {
list-style: none;
}
2) You can try using the paragraph instead of the list item to make the second line without list style.
Best Regards