How can I completely remove the search feature from the Origin theme header?

hi there,

I’m trying to hide the search icon/feature from the header in the Origin theme. I’ve managed to hide the icon but you can still click and see the search bar appear. Is there a way to hide it all together?

website // store access: skoffi

I used below code initially

#icon-search {
display: none !important;
}

Thanks so much!

Hey @INFRA

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above tag

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hi, @INFRA .

You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.header__search {
    display: none !important;
}

Result:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
.header__icons {
display: none!important;
}

thank you!