Is there a way of enabling the search icon or the search feature on the mobile header section?
website: wildbrews.co
Is there a way of enabling the search icon or the search feature on the mobile header section?
website: wildbrews.co
Hello! @bagdonaviciusbm Please follow these steps to add this CSS code:
@media only screen and (max-width: 989px){
.header__icons .header__search.block {
display: block !important;
}
}
Let me know if you need further assistance, If you found my help useful, consider liking this message and marking it as the solution.
details-modal.header__search.block {
display: block !important;
}
Hi
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above tag:
@media only screen and (max-width: 900px){
.header__icons .header__search.block {
display: block !important;
}
}
Here is result:
Hi @bagdonaviciusbm ,
Here are the steps you can follow:
1, Navigate to Online Store > Themes > Edit Code.
2, Locate and open the base.css (or theme.css, custom.css) file.
3, Paste the code snippet provided below at the bottom of the file, then save your changes.
@media screen and (max-width: 990px) {
.header__icons .header__search {
display: block !important;
}
}
Here is the result
We hope this assists in resolving the issue.
If you find our solution helpful, kindly consider Liking and Marking it as Accepted. Thank you!
Hi,
Is your means here want to show the search icon on mobile?
If that you can follow step by step bellow:
First you go to Admin->Store Online->Theme->Customize Code->assets/base.css
Second you need to add code at of bottom this file:
@media screen and (max-width: 749px) {
details-modal.header__search.block {
display: inline-flex !important;
}
}
Then the issue is that two search icons appear, one on the left side of the logo and one on the right, take a look.
Then the issue is that two search icons appear, one on the left side of the logo and one on the right, take a look.
Please replace all the added code with the following code @bagdonaviciusbm .
.desktop-localization-wrapper+ details-modal .header__icon {
display: block !important;
}
Seems like the issue is still persistent.
Then the issue is that two search icons appear, one on the left side of the logo and one on the right, take a look.
I just realized that I recently had this issue, but with pc isntead. Here is some code that a person gave me to solve it:
details-modal.header__search.block { display: none; } @media screen and (min-width: 768px){ .header–top-center>.header__search { display: none !important; } }
Maybe this helps?