Is there anyway to replace the bullet point (black dots) with a custom icon?

Hi,

I am using refresh theme and for my product descriptions I want to replace the bullet point black dots with something else like

Thank you

@nihaa , hope you are doing well.

Please use below line of CSS code and make changes as per your theme standard.

.rte ul li{
list-style:none;
}

.rte ul li:before { 
content: "⭑"; 
margin-right: 5px; 
}

This works!

Thank you