How to remove search and cart icon from Reformation theme menu?

Hello!

I am currently designing a website using reformation theme and i want to remove the search and the cart icon from the menu. Can someone help me with that? Thank you!

Also, can someone give me any clues as to how to assign certain products to certain pages, and how to create specific designed pages that are different for any of the products I have? Right now all the links from the products in the menu bar take me to the same page and i don t want that.

Is there any possibility to copy and paste a certain design from one page to the other?

thank you!

https://b07da1-4.myshopify.com/

this is the link to the website

hi @dave1212
You can follow these steps to achieve your result
Go to online storeEdit codetheme.liquid file
And pest bellow code Above tag


Result:

Hello @dave1212

You can add the below piece of code at the end of your app.css file

.thb-secondary-area.thb-header-right {
    display: none;
}

You can create different product templates for the product having different designs and assign them to your products accordingly.

Please hit Like and mark as a solution if this helps you.

1 Like

didn t work

@dave1212
You can use this code app.css file

.thb-secondary-area-item .thb-quick-search{
   display:none !important;
}
.thb-secondary-area-item .thb-secondary-cart{
   display:none !important;
}