How to modify cart page elements like quantity selector and prices?

Hi there!

I’d like to know the following:

  1. How do I edit the quantity selector border radius?

  2. How do I make the prices (1, 2) bigger?

  3. How do I edit the variant name (i.e. color)?

store: https://pinsowl.com/cart

Hi @blcksjfds ,

Go to Assets > theme.css and paste this at the bottom of the file:

1:

.cart__item--qty input {
    border-radius: 15px !important;
}

2:

.cart__price, .cart__item-sub [data-subtotal] {
    font-size: 16px !important;
}

3: You mean you want to edit variants directly at cart page? Or do you want to change the text and color of the variants.

Hope it helps!

1 Like