How can I create hollow bullet points?

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

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

ul{list-style-type:circle !important;}

Hi, this is the only spot under theme.liquid that I see body. Is this where I put it?

hello @VibeLiving
paste the code at the end of file theme.liquid

Hello @VibeLiving :waving_hand:

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.