Does anyone know how to edit the indent length of list and check box items in preview mode?

I would like to edit the indent length of bullet list and check list items. For some reason, my bullet list items and check list items are not aligned

image

Which CSS class should I target if I want to make this work?

1 Like

/* Reduce indentation in bullet lists */
ol {
padding-inline-start: 30px;
}
ul {
padding-inline-start: 30px;
}

Collect from this forum. But just for bullet list.
You can try on check list.

2 Likes