How do I hide the cart icon in the header on Broadcast theme?

Topic summary

A user seeks to hide the cart icon in the Broadcast theme header after unsuccessfully attempting to use HTML comment tags in header.liquid.

Solution Provided:

  • Navigate to Shopify Admin → Online Store → Themes → Actions → Edit Code
  • Open Assets → theme.css
  • Add the following CSS at the bottom:
.navlink.navlink--cart.navlink--cart--icon {
  display: none;
}

The original poster confirmed this solution worked.

Follow-up Question:
Another user asks how to remove the account icon using a similar method, but this remains unanswered.

Summarized with AI on October 30. AI used: claude-sonnet-4-5-20250929.

I’ve tried using in what I think is the code for it under Sections > header.liquid.

Any suggestions for hiding the cart icon on Broadcast theme?

1 Like

Could you please share your url? @Sunny2Day

1 Like

The website and password has been sent to thirtycoders@gmail.com

Hi @Sunny2Day

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
.navlink.navlink--cart.navlink--cart--icon {
display: none;
}

Hi @Sunny2Day

Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.
If helpful then please Like and Accept Solution.

how would I also remove the account icon at the same time?