Hi, i am trying to re-format my shop page from 1 column to 2.
However, I am struggling with the ratio as I’d like to squeeze 4 products when landing on the page.
My site is koredoko.com
and my end goal is like coucouintimates.com
Does anyone also know how to keep my product info always present, the product name and price only appear on hover,
1 Like
Hello @skymochi
You can add code by following these steps
-
Go to Online Store → Theme → Edit code.
-
Open your theme.liquid file
-
Paste the below code before on theme.liquid
@media screen and (max-width: 767px){
#shopify-section-template--15425262780489__product-grid .grid--1-col-tablet-down .grid__item{
width: 100%;
max-width: 50% !important;
}
}
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
1 Like
Hi @skymochi
Check this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “theme. Liquid” file. Find the tag and paste the code below before the tag.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Hi @skymochi
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > base.css and paste this at the bottom of the file:
@media (max-width: 768px){
#product-grid .grid__item {
width: 100%;
max-width: 50% !important;
border: solid 1px #000;
}
}
1 Like
Hi Niraj,
Thanks! This worked, do you know how to shorten each grid so that image is fully visible and ratio is closer to 4:5?
Hi!
Thanks! This worked, do you know how to shorten each grid so that image is fully visible and ratio is closer to 4:5?
You can add code by following these steps
-
Go to Online Store → Theme → Edit code.
-
Open your theme.liquid file
-
Paste the below code before on theme.liquid
@media screen and (max-width: 767px) {
#shopify-section-template--15425262780489__product-grid .grid--1-col-tablet-down .grid__item {
aspect-ratio: 4 / 5;
}
}
Was my reply helpful? Click Like to let me know!
Was your question answered? Please Mark it my both solution as Accepted Solution.