Hi,
Installed woocommerce and now on smartphones shopping cart icon constantly appears in the header next to menu.
I rather not have it there at all. Only in menu after there is something added to cart. How can I do this?
Many thanks.
Wibrand
Hi Petpack!
Thank you for using Enfold.
Add this to the Quick CSS field to hide the cart when no product cart is empty:
@media only screen and (max-width: 767px) {
.responsive #top .cart_dropdown {
right: -100px !important;
}
.responsive.html_visible_cart #top .cart_dropdown {
right: 7.5% !important;
}
}
Best regards,
Ismael
This solved my problem too. Thanks Ismael!