Hello,
could you give me advice how to hide search button from the header in Lorenza theme.
I did not find the right code.
Thank you! : )
Galin
Hello,
could you give me advice how to hide search button from the header in Lorenza theme.
I did not find the right code.
Thank you! : )
Galin
Welcome to the Shopify forums!
Would you mind sharing your store’s URL so we can provide a solution for your issue? Thanks!
Please add the following code to your index.css file at the very end:
/*Hide Search Button*/
li.header__icon.header__icon--search {
display: none;
}
Should that help answer your query, we always appreciate liking & marking an as answer to let the community find quality solutions faster. Thanks!
.quick-search {
display: none !important;
}
@galin_amity_des Add this code at the bottom of the index.css file
Yeah, excellent!
Thank you again! ![]()
Sorry, one more thing, how to do it the same but for mobile version. : )
There you go! Use that code:
li.drawer-menu__item.drawer-menu__item--search {
display: none;
}
Cheers!