calebs
(Test)
1
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;
}
_vincent
(Vincent)
2
You could try using a string as list-style-type:
list-style-type: '-';
calebs
(Test)
3
Thank you, Vincent! That really helped!