In my website’s mobile view the header has some white space like bleeding, can anyone please help to fix that issue. which should affect only the mobile view.
Website: https://www.taramajeans.com/
Thanks in advance
In my website’s mobile view the header has some white space like bleeding, can anyone please help to fix that issue. which should affect only the mobile view.
Website: https://www.taramajeans.com/
Thanks in advance
Hello @Sivadarshan
Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.
header#SiteHeader {
margin-top: 22px !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hello @Sivadarshan ,
Here are the steps to apply the necessary changes in your Shopify store:
@media screen and (max-width:749px){
header#SiteHeader {
margin-top: 20px !important;
}
}
Let me know if you need further assistance!