Archived topic
Customize Bullet Style
4 replies · Started by IU on March 25, 2020
I wrote the post contents like this : https://drive.google.com/open?id=1i8E667DIyeALROkiHDkMqFr190UdFx-L
However, the post shows like this : https://drive.google.com/open?id=1Zg8qQIvfp4TxSFnUyAwfdGHHV_rjOWIu
the post is here : http://iubunam.com/%ec%9b%8c%eb%93%9c%ed%94%84%eb%a0%88%ec%8a%a4/bullet-test/
I'd like to customize the sub-bullet style.
Is there any solution?
Hi there,
if you use the default list ie. do not select the bullet type or add any styles you can use this CSS:
ul {
list-style: disc;
}
ul ul {
list-style: circle;
}
ul ul ul {
list-style: square;
}
Thank you for always!!
David saves the day again! Thank you.
Glad you found that useful :)