How to add a spacing between product cards in Collection page Dawn Theme

Solved

How to add a spacing between product cards in Collection page Dawn Theme

IntechCarl
Shopify Partner
194 1 20

Hi everyone,
I have a  problem with the product cards inside my collection page. How Can I adjust the spacing in the desktop view without altering the spacing in my mobile view. See photo for reference.
Store Preview Link: https://bgtz765ufz7gbbgl-13830324282.shopifypreview.com

IntechCarl_0-1740541466800.png

 

Accepted Solution (1)
LizHoang
Shopify Partner
1251 159 193

This is an accepted solution.

Hi @IntechCarl 

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

 

@media (min-width: 990px) {
li.grid__item.scroll-trigger.animate--slide-in {
    margin: 0 6px !important;
}
}
Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Check our Joy Rewards & Loyalty Program

View solution in original post

Replies 4 (4)

LizHoang
Shopify Partner
1251 159 193

Hi @IntechCarl 

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

 

li.grid__item.scroll-trigger.animate--slide-in {
    margin: 0 6px !important;
}

 

Result 

LizHoang_0-1740543559552.png

 

Best,

Liz

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Check our Joy Rewards & Loyalty Program
IntechCarl
Shopify Partner
194 1 20

Hi @LizHoang Does it only affect the desktop view? Because I only want the desktop view to have the spacing.

LizHoang
Shopify Partner
1251 159 193

This is an accepted solution.

Hi @IntechCarl 

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

 

@media (min-width: 990px) {
li.grid__item.scroll-trigger.animate--slide-in {
    margin: 0 6px !important;
}
}
Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Check our Joy Rewards & Loyalty Program
IntechCarl
Shopify Partner
194 1 20

Thank you @LizHoang  This one works!