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,
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.
Hello,
Can you provide us the store url for your website?
Best,
Taknify
Hello @keithc123 ![]()
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:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- 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

