lmgs (@lmgs)

Forum Replies Created

Viewing 1 replies (of 1 total)

  • lmgs
    Participant

    @lmgs

    Hi fuse2701,

    You need to change the padding-left value from 16px to 0.
    The first padding value (0) is the padding-top one, the second one (0) is for padding-right, the third (23px) bottom and the last one (padding-left) should be changed from 16px to 0.

    These are the current values:

    #left-area ul, .entry-content ul, .comment-content ul, body.et-pb-preview #main-content .container ul {
    padding: 0 0 23px 16px;
    line-height: 26px;
    list-style-type: disc;
    }

    If you are using a child theme, copy and paste the CSS lines below there. Otherwise, go to your WordPress Dashboard, Divi / Divi Theme Option / General tab / and paste these lines there on Custom CSS / Save Changes

    #left-area ul, .entry-content ul, .comment-content ul, body.et-pb-preview #main-content .container ul {
    padding: 0 0 23px 0;
    }

    If that doesn’t work, try adding a !important like this
    padding: 0 0 23px 0 !important;

Viewing 1 replies (of 1 total)