Divi: How to Indent Bullet Lists

by Jan 28, 2022Tutorials0 comments

Hi, my dear DiviManiacs,

it’s strange, but the indent in Divi is not beautiful. But, fortunately, you need 2 lines of CSS to fix everything. Let’s see how to How to Indent Bullet Lists in Divi. And, yes, this trick work also forIndenting Numbered Lists in Divi as well!

Here’s the CSS Code:

.entry-content ol, .entry-content ul {
    padding: 20px 0px 20px 30px;
    list-style-position: outside;
}

.entry-content ol li, .entry-content ul li {
    margin-bottom: 10px;
}

 

Add this code to your Custom CSS area or Child Theme Stylesheet. And that’s all folks!