Hello,
I wonder if anyone can help please. When viewing my store on mobile, I can see the ‘cart’ button twice in header. I can’t seem to fix this on customizing my store, does anyone know how to fix this?
Thank you in advance for any advice ![]()
Hello,
I wonder if anyone can help please. When viewing my store on mobile, I can see the ‘cart’ button twice in header. I can’t seem to fix this on customizing my store, does anyone know how to fix this?
Thank you in advance for any advice ![]()
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community! ![]()
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
Please provide your store URL.
Hi,
Please provide the Store URL.
hello @luxestorexx
Please provide website url and if your store is password protected then also provide password So I will check and provide a solution here.
Please follow the steps:
Please add the following code at the bottom of your assets/theme.scss.liquid file.
@media only screen and (max-width: 768px) {
.header-bar__right{display:none;}
}
Hope this works.
Thanks!
hello @luxestorexx
please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
@media screen and (max-width: 769px) {
.header-bar .header-bar__right {
display: none;
}
}
hii, @luxestorexx
Paste this code in top of timber.scss file.
@media screen and (max-width: 769px) {
.header-bar__right.post-large--display-table-cell {
display: none !important;
}
}
Thank You.