Hello,
How can fix the extra space in mobile header,
I want to remove unusefull space.
Url:https://www.zisthi.com/
pass:Zisthi0206
Hello,
How can fix the extra space in mobile header,
I want to remove unusefull space.
Url:https://www.zisthi.com/
pass:Zisthi0206
Hi @Sohan2198
Check this one.
From you Admin page, go to Online Store > Themes
Select the theme you want to edit
Under the Asset folder, open the main.css(base.css, style.css or theme.css)
Then place the code below at the very bottom of the file.
@media only screen and (max-width: 749px){
.header__icons {
padding-right: 0;
}
.header {
padding: 0px 1rem 0px 1rem;
}
details-modal.header__search {
margin-right: -1rem;
}
}
And save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!