If the second line of numbered/buller list items shows inline (below the bullet / number)
Note: you can also fix this in the text settings.
Numbered list
/* -- FIX numbered lists style -- */
#left-area ol, .comment-content ol, .entry-content ol,
body.et-pb-preview #main-content .container ol {
list-style-position: outside;
}
/* -- END numbered lists style -- */Code language: CSS (css)
Bullet list
/* -- START Fix bullet list -- */
.entry-content ol li {
text-indent: -18px;
padding-left: 18px;
}
/* -- END Fix bullet list -- */Code language: CSS (css)