How can I delete small circles from my collection tab in the Dawn theme?

Topic summary

A user seeks help removing small circular bullet points appearing next to words in their collection tab on the Dawn theme, visible on both desktop and mobile versions.

Solution Provided:

A community expert offered CSS code to hide these elements:

  1. Navigate to Shopify admin → Online Store → Themes
  2. Click Actions → Edit code on the active theme
  3. Open the CSS file (base.css, style.css, or theme.css) in the Assets folder
  4. Add the following code at the bottom:
.header__submenu li {
  list-style: none;
}
  1. Save the changes

The solution targets the list-style property of submenu items in the header, effectively removing the unwanted circular markers from the collection navigation.

Summarized with AI on November 12. AI used: claude-sonnet-4-5-20250929.

Hey guys, can anyone help me to delete this small circles close to every word on my collection tab?

It also appears on mobile edit. DAWN THEME

THANKS a lot!

1 Like

hi @riqui900

Would you mind to share your store URL? Thanks!

Hey, @riqui900

I’m confident one of our Shopify experts would be able to accomplish this at a reasonable price. Just wanted to share this as an option in case you are unable to find a coding solution in your thread.

If there is anything else I can help you with, please let me know.

Sure, here it is: fandomfashionhouse.com.br

1 Like

Thanks for the info,

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

.header__submenu li {
    list-style: none;
}

And save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

2 Likes