I am trying to add the search icon to the top left just as it is on desktop. For some reason, it does not show up on mobile.
Thanks!
I am trying to add the search icon to the top left just as it is on desktop. For some reason, it does not show up on mobile.
Thanks!
Hi @pwnjunkie
Can you share your website so we can take a look at the issue?
Hello @pwnjunkie
Add this CSS code
Online Store > Themes > Edit code > Assets > custom.css
.header--top-center>.header__search { display: block; }
I am using Dawn theme, I do not see a ācustom.cssā in my edit code. I tried adding the code in ābase.cssā but did not see a change.
Try this code
.header--top-center>.header__search { display: block !important; }
Hi @pwnjunkie ,
Try this code instead
@media only screen and (max-width: 750px) {
#shopify-section-header > div > header > details-modal {
display: block;
}
}
That worked ! Thank you for your help !!