I want to remove the cart and search icon from my page

Hi I want to remove the search icon and the cart icon from my page (both on mobile and on computer)! Could you please help me?

Here is the link :

https://embrace-the-grind-5535.myshopify.com/

Thanks,

Ismaël.

Add this to the Custom Css section of your theme editor:

.header__icons {
    display: none;
}

Hi @embracethegrind ,

Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

.header__icon--account, .header__icon--search {
    display: none !important;
}

Hi @Alliance

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

a#cart-icon-bubble,
summary.header__icon.header__icon--search.header__icon--summary.link.focus-inset.modal__toggle {
    display: none !important;
}

Result:

Best,

DaisyVo