We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

How to Remove Extra Space at the Bottom of Product Cards

Solved

How to Remove Extra Space at the Bottom of Product Cards

faizkhanzade
New Member
4 0 0

I’m experiencing an issue where there’s extra space at the bottom of the product cards on my collection page. Here’s a screenshot showing the problem:

image.png

Does anyone know how to remove this unwanted space? Any advice would be greatly appreciated!

Thanks!

Accepted Solution (1)

Dan-From-Ryviu
Shopify Partner
12073 2359 2539

This is an accepted solution.

Hi @faizkhanzade 

You got those spaces because there are quick add buttons there, but you set box shadow, and the text color are white, so they are invisible. 

Please add this code to Custom CSS in Sales Channels > Online Store > Themes > Customize > Theme settings to solve it

.quick-add .quick-add__submit {
    border: 1px solid #000;
    color: #000;
}

Screenshot_2.jpg

 

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

View solution in original post

Replies 2 (2)

Dan-From-Ryviu
Shopify Partner
12073 2359 2539

This is an accepted solution.

Hi @faizkhanzade 

You got those spaces because there are quick add buttons there, but you set box shadow, and the text color are white, so they are invisible. 

Please add this code to Custom CSS in Sales Channels > Online Store > Themes > Customize > Theme settings to solve it

.quick-add .quick-add__submit {
    border: 1px solid #000;
    color: #000;
}

Screenshot_2.jpg

 

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

faizkhanzade
New Member
4 0 0

Thank you so much it worked.