Numbered list getting duplicate and bulleted list unalligned

Hi,

Whenever I select the numberred list or bulleted list in the product description editor I get this view of poorly alligned and duplicated numbers. Please help me fix this!

This is how it shows on the website frontend. (Bulleted numbers repeating)

This is how it show in the editor. Bullets are fine with no repetitions.

Hi @haidermirza ,

Please send me the store link, I will check it for you

It’s

https://mux.life/products/smart-wifi-door-lock

Hi @haidermirza ,

Please go to Actions > Edit code > Assets > theme-d.css file and paste this at the bottom of the file:

ol:not(.list-unstyled):not([list-unstyled]) li::before {
    display: none !important;
}

Thanks. It corrected the numbered list but the bulleted list is still unalligned and in blue color.

Hi @haidermirza ,

Please add code:

ul:not(.list-unstyled):not([list-unstyled]) li:before {
    margin-bottom: 0px !important;
}