Hi, I´m using Warehouse. I want to erase the search bar that is on the left of my main page on the desktop view, could someone help me?
My URL is https://8fkz88we2bhgyq7a-60284535015.shopifypreview.com
Hi, I´m using Warehouse. I want to erase the search bar that is on the left of my main page on the desktop view, could someone help me?
My URL is https://8fkz88we2bhgyq7a-60284535015.shopifypreview.com
@CamiC - add this css to the very end of theme.css file and check
.header__search-bar-wrapper, .search-bar__submit {
display:none;
visibility: hidden;
}
@CamiC - should be like this
Yes!
I add a code to erase it, but it erase the search on my mobile version as well, so I deleted.
@CamiC - please try this, issue is your theme already has code to hide search on mobile
@media screen and (min-width:750px){
.header__search-bar-wrapper, .search-bar__submit {display:none; visibility: hidden;}
}
It worked perfect!! Thank you very much!