Archived topic
How to display Woo Cart-Icon only on desktop, not on mobile?
1 reply · Started by Sascha on January 9, 2023
Viewing posts 1–2 of 2
Hello,
need to disable the cart-icon on mobile, while still showing on desktop due to the appropriate customizer-settings. Cannot find any settings for this, can you please guide me?
Thank you in advance and kind regards,
Sascha
Hi there,
try adding this CSS to your site:
@media(max-width: 768px) {
.menu-bar-item.wc-menu-item {
display: none;
}
}
This archived topic is closed to new replies.