Padding between collection items - Prestige theme

Hi, I was wondering how to remove some of the padding between the items on my collection pages. For reference I am using the prestige theme and I have already added the recommended code below to the ‘theme.liquid’ section to make the products display full width.

.product-card__info { position: absolute !important; align-self: self-end !important; padding-left: 10px !important; padding-bottom: 5px !important; } .v-stack.justify-items-center.gap-1 { justify-items: left !important; } .color-scheme.color-scheme--scheme-1 .container { margin: 0 !important; max-width: 100% !important; }

URL - https://927103-16.myshopify.com/

The kind of padding size I’m wanting -

Thank you! Emily :grin:

Hey @emilyaugstudios

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hello @emilyaugstudios
Go to online store ----> themes ----> actions ----> edit code ---->theme.css
add this code at the end of the file.

.product-list {
row-gap: 2px !important;
column-gap: 2px !important;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

Hi Moeed, that worked thank you. My only issue is that it appears to left align the content, leaving white space on the right hand side. Do you know how to fix this?

Thank you as always! :slightly_smiling_face:

Hey @emilyaugstudios

Try this updated code.


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hi Moeed, there still seems to be some padding either side. When I remove the code you recommended to try, it displays full width properly, with no extra white space padding. Any thoughts? :thinking:

Without code -

With code -

Hi @emilyaugstudios

for space right side, you can try this code above following previous solution:


Hope this can help you,

If our suggestions are useful, please let us know by giving it a like. Thank you :heart_eyes:

Hi! Thank you for the help, at first I thought it worked but as you can see it pushes the first row of products off the screen a bit, this theme is harder to work with :sweat_smile: Anymore thoughts on this? Thank you!

Hi @emilyaugstudios ,

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:


Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

Hi, thank you for all the help but unfortunately nothing is working without leaving weird padding on the page so I think I will just leave this for now. Maybe it’s something about the prestige theme that doesn’t allow for full width products and small row padding. Thank you again.