Hi,
I am looking to hide search icon on my website (Publisher theme) on both Desktop and Mobile
Publisher Theme
Thanks!
A user wants to hide the search icon on both desktop and mobile versions of their Shopify store using the Publisher theme.
Proposed Solution:
.header__search {
display: none !important;
}
This CSS rule will hide the search icon across all devices by targeting the header search element.
Hi,
I am looking to hide search icon on my website (Publisher theme) on both Desktop and Mobile
Publisher Theme
Thanks!
Hello, Kritikozzz, try going to Online store > ‘…’ > edit code
Look for a file with the name of ‘styles.css’ or ‘base.css’ or ‘theme.css’ or something along these lines of a general name with a .css
At the end of it, paste this code:
.header__search {
display: none !important;
}