(Squarespace) Add a text before Quantity in Cart Page

To add a text before Quantity in Cart Page, like this.

You can use this code to Custom CSS box.
If code doesn’t work, you can comment below, message or email me.

div.cart-row-qty:before {
    content: "Quantity";
    font-size: 16px;
    color: gray;
    position: relative;
    top: -3px;
}

1 Like