Hello,
I have my product title and price aligned left on the collection page, but would like to move it slightly more to the right, how can I do that?
Im using the Brooklyn Theme: aliudclothing.com
Thank you!
Kim
A user seeks to shift product titles and prices slightly to the right on their collection page while using the Brooklyn theme on Shopify.
Initial Solutions Offered:
theme.scss.liquid to adjust padding and margin on .grid-product__metatheme.liquid above the </body> tagClarification:
The original poster clarified they don’t want the elements centered—only moved slightly rightward.
Updated Solution:
A revised CSS snippet was provided: adding padding-left: 24px !important; to .grid-product__meta to achieve the desired rightward shift.
Status: The discussion appears ongoing, awaiting confirmation whether the latest CSS adjustment resolves the issue.
Hello,
I have my product title and price aligned left on the collection page, but would like to move it slightly more to the right, how can I do that?
Im using the Brooklyn Theme: aliudclothing.com
Thank you!
Kim
Hi @KimGottwald
Please add this code at the bottom of your theme.scs.liquid file
.grid-product__meta { padding-top: 0px !important; margin-top: -20px !important; }
Hey @KimGottwald
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
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
Thank you, but I don’t want to center it, only move it slightly more to the right.
Sorry, I though you want image and title are close togehter. Please add this code
a.grid-product__meta { padding-left: 24px !important; }