I cant remove a product from cart section

Topic summary

A Shopify store owner removed the quantity selector from their cart because they sell one-of-a-kind products, but this also eliminated the remove/delete button (“X”), preventing customers from removing items from their cart.

Solution provided:

  • Add custom CSS code to base.css file
  • The code hides specific cart quantity elements while restoring the remove functionality

Technical details:

  • Access via Edit Code → base.css
  • Add visibility rules for .cart-item__quantity and related heading elements

Outcome: The issue was resolved successfully with the CSS fix.

Summarized with AI on November 4. AI used: claude-sonnet-4-5-20250929.

Hey there,

I hope everyone is doing alright. I have a small issue with my Cart section. Since I have removed the quantity section of my products, because every product I sell is one of a kind. But when I go to cart section it doesn’t let me to remove the product if I want to take another, do you know to return back the “X” so I can remove a product if a customer has changed their mind?

Thanks in advance!

Cheers,
Choob Shop

Please share store url

@DaisyVo Hey, thank for reaching out.

URL: https://eyrc1j-in.myshopify.com/
pass: ohclup

Thanks in advance!

Go to Edit Code → base.css → Add this code to the bottom

td.cart-item__quantity, th.cart-items__heading–wide.small-hide.caption-with-letter-spacing {
visibility: unset !important;
}

@DaisyVo Thank you so much! Have an amazing day!