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 {
content: “\2192”; /* Unicode for right arrow */
margin-right: 5px; /* Adjust spacing as needed */
}
Best Regards.