Grid Theme - Help needed to make changes to how products are shown on mobile view

Solved

Grid Theme - Help needed to make changes to how products are shown on mobile view

ResidenceJD
Tourist
8 0 1

Hi, 

 

We are using Grid Theme and are needing to change how many products are shown on 1 line in mobile view. Currently only 1 product is shown per line which means a lot of scrolling down so we would like to change this to 2 products per line. 

 

The url is www.scandihandles.co.uk

 

We would also really like to have page numbers at the bottom to choose from as currently there is only an arrow forwards or backwards for the next page.

 

Can anyone help with the code for these two changes?

 

Thank you in advance.

 

 

Accepted Solution (1)

GemPages
Shopify Partner
5625 1262 1279

This is an accepted solution.

Hello @ResidenceJD ,

 

About 2 product in 1 row on mobile:

You can follow these steps: 
1. Go to Online Store->Theme->Edit code

GemPages_0-1678769106461.png

 

2. Open your theme.liquid file, paste the below code before </body>

GemPages_1-1678769146112.png

<style>
   @media (max-width: 767px ) {
      .collection-products {
          column-count: 2;
      }
   }
</style>

For page numbers:

You can reach with the theme to fix it.

I hope the above is useful to you.


Kind & 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 1279

This is an accepted solution.

Hello @ResidenceJD ,

 

About 2 product in 1 row on mobile:

You can follow these steps: 
1. Go to Online Store->Theme->Edit code

GemPages_0-1678769106461.png

 

2. Open your theme.liquid file, paste the below code before </body>

GemPages_1-1678769146112.png

<style>
   @media (max-width: 767px ) {
      .collection-products {
          column-count: 2;
      }
   }
</style>

For page numbers:

You can reach with the theme to fix it.

I hope the above is useful to you.


Kind & 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
ResidenceJD
Tourist
8 0 1

This worked perfectly.. Thank you