I have space on the site that needs to be deleted

Topic summary

A user encountered excessive spacing between a product bundle and the “add to cart” button on their dropshipping site. A technical solution was provided involving custom CSS code:

Solution steps:

  • Navigate to Online Store → Theme → Edit code
  • Open the theme.liquid file
  • Insert CSS styling before the closing tag
  • The code targets .product-form__buttons with a margin-top adjustment

Status: The solution was marked as accepted, indicating the spacing issue was successfully resolved. The fix involves adding custom styling to reduce the unwanted vertical space in the product form layout.

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

I have a big space between my bundle and the “add to cart” button. I think there is a code that creates this space. Help me to delete the space please.

Hello @Lotshak

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

.product-form__buttons { margin-top: 15px !important; }

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

2 Likes