Shopify themes, liquid, logos, and UX
Hello
i am having trouble finding how to centre content on my site
as you can see, it is left-aligned. I want the product and collection cards to be centre aligned
my site is www.sundaymass.store
password is CRUSADE
Solved! Go to the solution
This is an accepted solution.
Hello @massmonster
Go to online store ---------> themes --------------> actions ------> edit code------->base.css -----> line number 895
search this code
.grid {
display: flex;
margin-bottom: 2rem;
padding: 0;
list-style: none;
column-gap: var(--grid-mobile-horizontal-spacing);
row-gap: var(--grid-mobile-vertical-spacing);
flex-wrap: wrap;
justify-content: flex-start;
}
and replace with this code.
.grid {
display: flex;
margin-bottom: 2rem;
padding: 0;
list-style: none;
column-gap: var(--grid-mobile-horizontal-spacing);
row-gap: var(--grid-mobile-vertical-spacing);
flex-wrap: wrap;
justify-content: center;
}
and the result will be
If this was helpful, hit the like button and mark the job as completed.
Thanks
Include this style in your stylesheet:
.collection-list, .product-grid {
justify-content: center;
}
Hi @massmonster
Do you mean this?
If it is, check this one.
.title-wrapper-with-link {
justify-content: center;
}
.collection-hero__description, .collection-hero__title {
max-width: 100%;
text-align: center;
}
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
This is an accepted solution.
Hello @massmonster
Go to online store ---------> themes --------------> actions ------> edit code------->base.css -----> line number 895
search this code
.grid {
display: flex;
margin-bottom: 2rem;
padding: 0;
list-style: none;
column-gap: var(--grid-mobile-horizontal-spacing);
row-gap: var(--grid-mobile-vertical-spacing);
flex-wrap: wrap;
justify-content: flex-start;
}
and replace with this code.
.grid {
display: flex;
margin-bottom: 2rem;
padding: 0;
list-style: none;
column-gap: var(--grid-mobile-horizontal-spacing);
row-gap: var(--grid-mobile-vertical-spacing);
flex-wrap: wrap;
justify-content: center;
}
and the result will be
If this was helpful, hit the like button and mark the job as completed.
Thanks
Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025