delete from header account and cart

Topic summary

A user working with the Shopify Symmetry theme wanted to remove the account and cart elements from the website header.

Solution provided:

  • Navigate to Shopify admin → Online Store → Themes
  • Click Actions → Edit code on the active theme
  • Locate the CSS file (base.css, style.css, or theme.css) in the Assets folder
  • Add the following CSS code at the bottom:
.logo-area__right__inner {
    display: none;
}
  • Save the changes

Outcome: The solution successfully resolved the issue, with the original poster confirming it worked.

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

Hello,

I’m trying to delete from header, account and cart, because I don’t need it in my website.

my theme is Symmetry, can someone help me?

thanks in advance

1 Like

Hi @AllegraT

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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:
.logo-area__right__inner {
    display: none;
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

it work!!!

thanks so much :blush: