Okay
  Public Ticket #2548082
How do I remove the cart icon on mobile & desktop?
Closed

Comments

  •  19
    Brian started the conversation

    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?

  •  2,965
    Andrew replied

    Hi Brian,

    Use the following custom css:

    #mobile-cart-link {
        display: none !important;
    }
    

    Thanks.