How can I centre Product Grid and make it full width?

Solved

How can I centre Product Grid and make it full width?

visualess
Excursionist
33 0 6

I have added a product grid with a border but it isn't centered. 

 

Ideally, i would like the grid to bleed out to the edge? 

 

Is this possible?

 

Thanks!!

Screenshot 2024-08-07 at 11.55.13.png

Accepted Solutions (2)

Moeed
Shopify Partner
4892 1292 1566

This is an accepted solution.

Hey @visualess 

 

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 </body> tag

<style>
.collection .grid {
    justify-content: center !important;
}
</style>

RESULT:

Moeed_0-1723028440987.png

 

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

 

Best Regards,
Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️

View solution in original post

niraj_patel
Shopify Partner
2378 514 511

This is an accepted solution.

Hello @visualess 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
.collection .grid{
justify-content: center;
}
.collection .grid--4-col-desktop .grid__item{
width: calc(26% - var(--grid-desktop-horizontal-spacing)* 3 / 4) !important;
max-width: calc(26% - var(--grid-desktop-horizontal-spacing)* 3 / 4) !important;
}
</style>

niraj_patel_0-1723028675969.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

View solution in original post

Replies 7 (7)

ProtoMan44
Shopify Partner
607 54 91

@visualess  Hey, thanks for posting here.
 can you please share the link to inspect it, thanks.

- A thirsty developer passionate about supporting the community. If you'd like to, you can  

Buy me a Coffee.


- Your Shopify Solution Specialist Get a Quote at

ProtoMan44

 - 

Chat On Whatsapp


Crafting exceptional e-commerce experiences to elevate your online presence. Let's build your success story together!
visualess
Excursionist
33 0 6

4qs.uk

 

password: 44444

Moeed
Shopify Partner
4892 1292 1566

This is an accepted solution.

Hey @visualess 

 

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 </body> tag

<style>
.collection .grid {
    justify-content: center !important;
}
</style>

RESULT:

Moeed_0-1723028440987.png

 

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

 

Best Regards,
Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️
visualess
Excursionist
33 0 6

Is there a way to make it so that the mobile version still stacks as a 2 product grid instead of 4?

niraj_patel
Shopify Partner
2378 514 511

This is an accepted solution.

Hello @visualess 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
.collection .grid{
justify-content: center;
}
.collection .grid--4-col-desktop .grid__item{
width: calc(26% - var(--grid-desktop-horizontal-spacing)* 3 / 4) !important;
max-width: calc(26% - var(--grid-desktop-horizontal-spacing)* 3 / 4) !important;
}
</style>

niraj_patel_0-1723028675969.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com
visualess
Excursionist
33 0 6

Is there a way to make it so that the mobile version still stacks as a 2 product grid instead of 4?

ProtoMan44
Shopify Partner
607 54 91

@visualess  put this in css code :

.collection .grid {
    justify-content: center;
}
- A thirsty developer passionate about supporting the community. If you'd like to, you can  

Buy me a Coffee.


- Your Shopify Solution Specialist Get a Quote at

ProtoMan44

 - 

Chat On Whatsapp


Crafting exceptional e-commerce experiences to elevate your online presence. Let's build your success story together!