Archived topic
and not working in your theme
5 replies · Started by Karen on July 27, 2022
I have a bunch of posts on my site that use lists with different levels of bullets. I have the coded with <li aria-level="1"> and <li aria-level="2"> these don't seem to be working in your theme. I switched themes to a twenty one and the bullets work there. That is how I have narrowed it down to the theme. Is there something special I need to do to get this to work?
You can see a sample page of the bullet issues here https://parentingmontana.org/anger-7/
Thank you
g
Hi there,
What exactly isn't working?
I can't see any obvious issues here:
https://www.screencast.com/t/gL5E9y9rm
the different levels are to have different bullets
level 1 - disc
level 2 - circle
level 3 - square
They are all a closed disc.
Try adding this CSS:
.entry-content ul li ul li {
list-style: circle;
}
.entry-content ul li ul li ul li {
list-style: square;
}
Yeah! That seemed to work. Thank you so much.
No problem :)