Hi,
I would like to have the collection list on the front page displayed as a grid, similar to the desktop version. Unfortunately, on mobile devices, the collections are displayed one below the other. Is it possible to arrange the collection list with 2 items next to each other on mobile?
1 Like
This question is simple, would you be willing to share the website link?
this is the link for the website : https://sofizare.com/
Hi @Jonathanlondon
Which collection list are you referring to?
As you can see on the screenshot, the collection list is Carousel. I would ask if it possible to have the collection list 2 row next to eachother
Do you want this effect?
If you need further collaboration, please contact me.
Thanks for the info, do you mean like this?
If it is, try 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 “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width: 749px){
.list-collections__item-list {
display: grid;
grid-template-columns: 1fr 1fr;
}
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
Hi, yes i mean this grid for the mobile phone users.
I have tried the CSS code, unfortunately it didn’t change the grid for the mobile phone.