Change from minimal theme messing up

Hi, I have set up a shop on site and currently it is minimal theme. I want it to show men, women, accessories at top instead of that small hard to find word (shop) that drops down.

  1. However I cannot get any of the other themes to work? It makes a mess, the dropdowns are open and gets lost behind the redeem bar?

  2. Plus can I get rid of the header? The site already has a header?

The problem is often a conflict between the site theme and the store theme
Please put a link to the site and I will try to help

I found your site in another post
You can get rid of the header by using this CSS

.sprd-header{
display: none;
visibility: hidden;
}

But you will lose the basket icon in this case

Or, you can hide certain elements, such as the logo , navigation menue … somthing like this

#sprd-navigation{
display: none;
visibility: hidden;
}
.sprd-header__image{
display: none;
visibility: hidden;
}

1 Like

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.