Please try this css class
.product-description .tab-content ul li {
list-style: initial!important;
list-style-position: inside!important;
display: list-item;
}
Thanks!
A Shopify store owner reported that bullet points in product descriptions were not displaying correctly despite trying solutions from previous threads.
Two community members provided CSS code solutions:
list-style: list-item !important; list-style-position: inside !important; display: list-item; to .product-description .tab-content ul li.tab-content ul li { display: list-item; } added to the custom.css.liquid fileThe original poster confirmed the solution worked successfully.
A second user later reported experiencing the same issue on their store (gpuconnect.com), noting that bullet points previously worked but stopped functioning after an unknown change. They asked which file and location to add the CSS code to resolve their problem.
Please try this css class
.product-description .tab-content ul li {
list-style: initial!important;
list-style-position: inside!important;
display: list-item;
}
Thanks!