Look at the unordered list in the image below
. I want level 4 and level 5 have their own shapes (not reusing square bullet from level 3). how can I add more shapes? (manually or by using an addon)

Look at the unordered list in the image below
. I want level 4 and level 5 have their own shapes (not reusing square bullet from level 3). how can I add more shapes? (manually or by using an addon)

You can change the CSS in the styling section for this card type.
Refer to section 6.3 in the Anki documentation for the styling section.
In the CSS you can choose bullet styles for nested list bullets. Try adding this outside the .card { ... } in the styling section of the card:
li {
list-style-type:disc;
}
li li {
list-style-type:circle;
}
li li li {
list-style-type:square;
}
li li li li {
list-style:"□ ";
}
li li li li li {
list-style:"▶ ";
}
Better version: More Bullet shapes - #6 by Hossein
Hello @ArsenLapin. Thank you for your response.
I applied these code in styling section but the problem still persist.
Below is styling section so if i made any mistake, please tell me so I know how to correct it.
It’s even worst for me ![]()
all my bullet levels are same now: disk!
at least for me, this is the corrct version of your code:
ul li {
list-style-type:"• ";
}
ul ul li {
list-style-type:"◦ ";
}
ul ul ul li {
list-style-type:"▪ ";
}
ul ul ul ul li {
list-style:"▫ ";
}
ul ul ul ul ul li {
list-style:"▴ ";
}
ul ul ul ul ul ul li {
list-style:"▵ ";
}
The editor live preview addon kind of solves this.