Bullett points not displaying with product descriptions

Hi, I have around 70 products on my site. When I’m editing the product descriptions, I am selecting the bullet points, but they are not showing up when I go to view on the actual website. They just completely disappear.

Can you please assist

hello @David334 ,

share you store url.

https://pestudiesresources.com.au/

bullet points works like that, ul > li

you are putting h3 in ul which is causing not showing it

I don’t really understand what that means as I don’t code. I just utilised the bullet list and numbered list options and it disappears on the front end

actully you are making a mistake at the editor while writting the description.
use bullet list once in any description and let me i will check again.

@David334 please share ss to understand which bullets are you talking about.

Here is an example of a product and a screenshot of the backend

https://pestudiesresources.com.au/collections/qce-sport-science/products/year-10-sport-science-qce-package-a

try to add this code in custom code section .

.content-page__copy ol {
    list-style-type: decimal !important;
}

if you want to see these like :

then please put this code in custom.css

body.template-product .description_tab li {
    list-style: disc;
}

or

body.template-product .description_tab li {
    list-style: decimal;
}

if your issue is solved so please hit like and mark is as solution, thanks

@David334