Home Forums WoodMart support forum Bullets Reply To: Bullets

#545631

Hello,

If you make a bullet list in your WordPress editor and then switch to the “Text” view and add the custom class:
Like this:

<ul class="custom-arrow-list">
 	<li>Consequat a scelerisque suspendisse vel et eget eu vitae adipiscing nibh scelerisque semper cum adipiscing</li>
 	<li>Facilisis adipiscing est accumsan lorem vestibulum. Aliquet mus a aptent ullam corper metus accumsan.</li>
 	<li>Habitasse a purus nec ipsum a urna ac ullamcorper varius metus blandit posuere.</li>
</ul>

Screenshot for clarification:
https://ibb.co/NFXpYVx

Then add the following custom css code in theme settings > custom css > global custom css area:

.custom-arrow-list {
list-style-type: none;
}
.custom-arrow-list li:before {
font-family: "Font Awesome 5 Free";
content: "\2192"; 
   margin-right: 5px; 
}

Then Navigate to Theme Settings > Performance > Fonts and icons > Font Awesome library > Choose always use.

Best Regards.