How can I update my online store's cart design and add a delete product button?

Topic summary

Main goal: change the cart title to uppercase (“CART”) and add a delete/remove product button in a Shopify store using the Impulse theme.

Key proposals:

  • Uppercase title via CSS: add text-transform: uppercase; to h1.section-header__title. First suggested in assets/base.css; when that file wasn’t found, advised to place it in assets/theme.css. Another suggestion was to add CSS in theme.liquid above .
  • Delete/remove button: one responder notes the cart page already includes a remove button; adding one to the side cart would require theme-specific custom coding (full code not provided in-thread).

Context & artifacts:

  • Store URL was shared for review. A screenshot and CSS snippets were provided to guide file placement, which are central to the proposed fix.

Current status:

  • The reported CSS changes “Not working” for the OP, and the remove-button request for the side cart remains unimplemented. No confirmed resolution; further theme-specific troubleshooting or custom development is needed.
Summarized with AI on January 3. AI used: gpt-5.

Hello dear community! I come to ask for your help in arranging my online store! I would like to change my shopping cart. The name is written in small letters, from Cart I would like to change it to CART.
My store does not have a button to delete the product, because the Impulse theme does not have such a button. I would like you to help me implement it, if you could. Thank you !

1 Like

Hi @AxelWorld

If you share your store URL and password with me, I will check and provide you with the solution.

1 Like

www.axel-world.com

1 Like

Hi @AxelWorld

  • Go to Online Store → Theme → Edit code.
  • Find the file assets/base.css and paste the code below at the bottom of the file."
h1.section-header__title {
text-transform: uppercase;
}

I don’t have the base.css section in my code edit.

1 Like
  • Go to Online Store → Theme → Edit code.
  • Find the file assets/theme.css and paste the code below at the bottom of the file."

Hello @AxelWorld

Welcome to Shopify Community.

Please add below CSS for CART word in theme.liquid above ‘’:


For remove button, cart page already have and for side cart, the complete code can’t be written here because it needs to be coded as per the theme.

Thanks

Not working