Is there a way to create hollow bullet points ? I put it in when I edit, but it’s showing like this:
I want it to look like this:
hello @VibeLiving
You can add code by following these steps to change solid bullets to circle bullets
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
hello @VibeLiving
paste the code at the end of file theme.liquid
Hello @VibeLiving ![]()
In Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom
li ul {
list-style-type: circle !important;
}
That would make all nested lists have circle symbol at the head.