Hi guys I wish to remove search bar on header. I use Expanse theme.
Thanks!
Hi guys I wish to remove search bar on header. I use Expanse theme.
Thanks!
Go to Online store > Themes > Edit code > open theme.liquid file, add this code below after element
Hi @Eze_Paul
check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width:749px){
predictive-search {
display:none !important;
}
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Code update
Hi, with this code the search icon is gone, I want it to always show on the header, before it only shows when you scroll down.
Sorry, please update code to this
You are the best. Perfect now.
Thanks!
Very welcome!