Bullets points not showing up on my entire website, both Blog and Products and pages. It shows up in the editor however not on the Live site. Theme is Expanse. Please help
Hey @ClearLee
Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.
Best Regards,
Moeed
Hi, it https://www.clearlidz.com/
Thank you
Ive tried other recommendations here on the forums and copied the following below to the themes css, however that has not worked:
.product-description ul {
list-style-type: disc; /* Ensures bullet points are displayed */
margin-left: 20px; /* Adds indentation */
}
.product-description li {
margin-bottom: 10px; /* Adds space between list items */
Hey @ClearLee
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above </ body> tag
<style>
ul {
list-style: disc !important;
}
</style>
RESULT:
If you require any other help, feel free to reach out to me. If I managed to help you then a Like would be truly appreciated.
Best,
Moeed
Wow, thank you, it’s fixed.
Bullet points are showing up on my footer headings now also that wasn’t there before.
Did I do it correctly?
I see, let’s try a different way. Remove the previous code and replace it with this code below. It will only work on the product page blocks.
<style>
.product-block ul {
list-style: disc !important;
}
</style>
RESULT:
If you require any other help, feel free to reach out to me. If I managed to help you then a Like would be truly appreciated.
Best,
Moeed
Will this code also allow bullets for other blog post and other pages as well?
Hi you never responded to be last message. the bullets are now not showing up on blog post.
Can you help?

