How can I remove the price in a Dawn theme cart?

Hey, I would like to remove the price which I marked, since there is no need for it. Does anyone know how to remove it?

Thanks in advance

brokenmind.com
pw: TESTX

Hi, @drew23

You can try this code

  1. Go to Online Store-> Theme->Edit code
  2. Asset-> base.css ->paste the below code at the bottom of the file.
td.cart-item__totals.right {
    display: none;
}
1 Like