Replace • with - in posts

We have a lot of lists in our forum and would love to replace the • bullet listing with - dashes. Is it possible to edit that in the settings or css?

I tried the code below, but it completely removed the listing. Any ideas?

ul {
  list-style-type: none;
}

You could try using a string as list-style-type:

list-style-type: '-';
3 Likes

Thank you, Vincent! That really helped!

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.