How to remove text and add to cart from header - Minimal Theme

Hi,

In the header of my website, there is a “log in or create an account” button as well as the cart button. I am wanting to remove these from the header and also the black bar. I think the easiest solution would be to remove the header completely but I don’t know if that would also remove the cart and the text.

Any tips?

My website: psycoskateboards.com

Hi!

If you want to delete the top bar that contains account login and cart icon, then add this code to the bottom of theme.scss.css (theme.css)

.header-bar {
  display: none;
}

@turtleshorts , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > theme.scss.liquid or theme.css and paste this at the bottom of the file:
.header-bar{
    background: transparent !important;
}

.header-bar__module--list{
    display: none;
}

Kind regards,
Diego

This worked!

Do you know how to make it visible only on the shop page but invisible on the rest?