How can I disable the shopping cart icon in the minimal theme?

Topic summary

Goal: Temporarily remove the shopping cart icon and the grey header in the Shopify Minimal theme; no built-in setting found by the requester.

Latest guidance:

  • One reply asked for the store URL to provide targeted help.
  • A suggested fix: Edit theme code > theme.scss.liquid and add: .header-bar { display: none; } This hides the header bar (likely the grey header).
  • Another reply advised adding code in theme.liquid just above , but the actual code snippet was missing; a screenshot shows a result, but the steps are not reproducible without the code.

Technical notes:

  • theme.scss.liquid is the theme’s stylesheet where custom CSS can hide elements.
  • theme.liquid is the main layout file; inserting code there can affect site-wide UI, but the missing snippet leaves the method unclear.

Open points / status:

  • No explicit instruction provided yet to hide only the cart icon; current advice targets the header bar.
  • The thread lacks confirmation from the requester, and remains unresolved pending the store URL and/or a complete code snippet.
Summarized with AI on January 12. AI used: gpt-5.

Hi, I am unable to find the setting, I want to turn off the shopping cart icon and grey header for the moment. I have the minimal theme. Would anyone know if I can do this? Thanks,

Hello,

Can you provide us the store url for your website?
Best,
Taknify

Hello @keithc123 :waving_hand:

Inside Shopify Admin, you can go to Edit theme code, open file theme.scss.liquid and add this code at the bottom

.header-bar {
    display: none;
}
1 Like

Hi @keithc123 ,

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code just above tag

RESULT:

If you require further help to optimize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

Best Regards,
Makka

1 Like