How do I remove white space above add to cart buttton?

Hey all, my product page seems to have a big gap between the quantity picker, and add to cart button. Any ideas what may be causing this, and how to remove it? Here is the link. Is there any way to fix this with custom CSS in the theme editor?

Hi @VIB1

I’m Dan from Ryviu: Product Reviews & QA

This space belongs to 3rd party app (Giftship: Gift Options & More), if you don’t use it anymore then you can remove it to remove the space or add this code below to your theme.liquid file in Online Store > Themes > Edit code


Hello @VIB1

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__info-container .product-form{ margin: 0.5rem 0 !important; } .product__info-container>*+* { margin: 0.6rem 0 !important; }

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