How Do I Decrease The Space Here?

Topic summary

A user seeks to reduce spacing on their product page and provides a screenshot showing the problematic area.

Solution provided:

  • Navigate to theme’s Edit code section
  • Locate the base.css file
  • Add the following CSS at the end:
.kaching-bundles__block.kaching-bundles__block--loaded {
    margin-top: -15px !important;
}

The responder includes a before/after screenshot demonstrating the reduced spacing. The issue appears related to a “kaching-bundles” component, likely a third-party app or custom bundle feature on the Shopify store. The solution uses negative margin to pull elements closer together.

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

Hey, how do I decrease the space here only by a little bit. I attached a picture and my website, thank you!

https://charmente.com/products/charmente-flared-work-yoga-pants

Hi @Simon159

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

.kaching-bundles__block.kaching-bundles__block--loaded {
    margin-top: -15px !important;
}

Result

Best,

Liz