Comments 19Brian started the conversationSeptember 23, 2020 at 9:49amI want to remove the WooCommerce cart icon for desktop and mobile.The desktop version gets removed via:.icon-salient-cart{ display: none;} .cart-wrap { display: none;}But the mobile icon is still there? 2,965Andrew repliedSeptember 23, 2020 at 10:20amHi Brian,Use the following custom css: #mobile-cart-link { display: none !important; } Thanks. Sign in to reply ...
I want to remove the WooCommerce cart icon for desktop and mobile.
The desktop version gets removed via:
.icon-salient-cart{
display: none;
}
.cart-wrap {
display: none;
}
But the mobile icon is still there?
Hi Brian,
Use the following custom css:
Thanks.