INFRA
July 21, 2023, 12:16pm
1
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!
Moeed
July 21, 2023, 12:21pm
2
Hey @INFRA
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
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,
In your Shopify Admin go to online store > themes > actions > edit code
Find Asset > base.css and paste this at the bottom of the file:
.header__icons {
display: none!important;
}