How can I adjust product grid to full width on Dawn 7.0.1?

Solved

How can I adjust product grid to full width on Dawn 7.0.1?

scotticus
Excursionist
42 0 6

Hello,

I would like to make the product grid full width 2 column on desktop. Im not sure how to code this.

 

Any help is appreciated!

Thank you!

 

Accepted Solution (1)

GemPages
Shopify Partner
5625 1262 1278

This is an accepted solution.

Hello @scotticus 

 

I understand that you would like the product grid to be full width instead of having a max-width of 1200px as it is now.

 

You can try to doing by this way: 

1. Go to Online Store -> Theme -> Edit code
2. Open your theme.liquid theme file
3. Paste the below code before </head>

 

<style>
  .section-template--17087053431095__product-grid-padding .collection.page-width{
      max-width: 100%;
  }
</style>

 

I hope the above code works and helps you.

Best regards,
GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center

View solution in original post

Replies 2 (2)

GemPages
Shopify Partner
5625 1262 1278

This is an accepted solution.

Hello @scotticus 

 

I understand that you would like the product grid to be full width instead of having a max-width of 1200px as it is now.

 

You can try to doing by this way: 

1. Go to Online Store -> Theme -> Edit code
2. Open your theme.liquid theme file
3. Paste the below code before </head>

 

<style>
  .section-template--17087053431095__product-grid-padding .collection.page-width{
      max-width: 100%;
  }
</style>

 

I hope the above code works and helps you.

Best regards,
GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center
scotticus
Excursionist
42 0 6

Hey @GemPages 

 

This worked perfectly!

 

Thank you very much!