How to remove product and total text from cart header

Hi @undercoverfresh

  • You can try to follow this step
    Step 1: Go to Edit code

Step 2: Find file base.css and add this code at the end of the file

th#CartDrawer-ColumnTotal {
    display: none !important;
}

th#CartDrawer-ColumnProduct {
    display: none !important;
}

Result:

Best,

Liz

Step 2: Find file base.css and add this code at the end of the file

1 Like