Any way to add padding between bullet points via CSS styling?

I’ve messed around with the colors and got them the way that I want to using a community theme and adjusting some stuff in the editor, but I can’t figure out how to add padding between bullet points in preview mode. Currently, they stack right on top of each other and it’s difficult to distinguish between bullet points, especially if there are multiple sentences for each bullet. Is there a way to do this?

I figured it out. I just added this to the .css file:

li {
    padding-top: 4.5px;
    padding-bottom: 4.5px
}

This did change the spacing slightly for quote boxes, especially bullets inside quote boxes, but not enough to offset the benefit of padding between bulleted points.

1 Like