How To Remove Highlighted Text from Buy Buttons And Add to Cart and Buy it Now Button?

Topic summary

Issue: Unwanted gray highlighting on “Bundle and Save” Buy buttons and on Add to Cart/Buy It Now, plus requests to unbold and adjust capitalization (“Add to Cart”, “Checkout”). Screenshots are provided to illustrate the styling problems.

Actions taken (via CSS in theme.liquid, the main Shopify theme file):

  • Removed gray backgrounds: unset background for kaching-bundles bar title and button spans.
  • Unbolded and capitalized button text: font-weight: 400; text-transform: capitalize for product submit and cart drawer checkout.
  • Further tweak: unbolded cart drawer checkout button.
  • Changed checkout label by hiding the original button and adding a ::before pseudo-element with custom text (“CheckOut”) and styling. (A CSS pseudo-element inserts content before an element.)

New/ongoing issues:

  • In the cart, the gray highlight appears to cover Apple Pay/Google Pay icons; the helper could not see payment buttons in their screenshot, so this remains unresolved.
  • Request to standardize “Checkout” (one word with capital C) across locations; current custom text is “CheckOut,” not the exact requested casing.

Status: Partial resolution for background/removal and typography; payment button overlay and exact “Checkout” capitalization remain open, pending further adjustments and possibly store access for inspection.

Summarized with AI on December 20. AI used: gpt-5.

Hi,
I am trying to remove the highlighted text in light gray on the Buy 1, 2,3 in the Bundle and Save section. This was not there before.

Also, the add to cart/buy it now section is highlighted in white as well. How can I remove the highlighted sections?

Hello @GEVANTE

would you like to share your store URL and password if any please.
so i can check and provide you possible solution for your question.

Thanks!

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

span.kaching-bundles__bar-title { background: unset !important; } button.product-form__submit span, .shopify-payment-button span { background: unset !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Thanks, do you know how to un-bold that Add to cart text as well? Can’t thank you enough!

Not only unbold, but do can you change the text to: Add to Cart, instead of Add to cart?

Capitalizing the letter C in Cart.

Also, when adding the item to cart, I want to capitalize the O in “Check out” as well.

Thank you, please let me know!

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

button.product-form__submit { font-weight: 400 !important; text-transform: capitalize !important; } .cart-drawer .cart__checkout-button { text-transform: capitalize !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? PLEASE Mark my both solutions as an Accepted Solution.

Hey Niraj,

So sorry for the trouble.

One last thing, could you make the Check Out text not be bold?

Thank you so much.

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

#CartDrawer .cart__checkout-button { font-weight: 400 !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? PLEASE Mark my ALL solutions as an Accepted Solution.

Hi Niraj,

i see when i go to my cart, the highlighted gray part is covering the Apple Pay and google pay icon. Could you help me with this?

Also the checkout O in here is not capitalized as well. Can you actually combine the word checkout into one word? For the previous one you helped me out with, could you also change that check out text into one word “Checkout”? Thanks

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

button#CartDrawer-Checkout::before { content: "CheckOut"; visibility: visible; position: absolute; background: rgba(var(--color-button),var(--alpha-button-background)); display: flex; justify-content: center; align-items: center; font-weight: 400 !important; } #CartDrawer .cart__checkout-button { visibility: hidden; position: relative; }

Not able to find your payment buttons and you can see the below image:

Was my reply helpful? Click Like to let me know!
Was your question answered? Now Please Mark MY ALL SOLUTIONS as an Accepted Solution.

Thanks :slightly_smiling_face: