How to make collection list 2 by 2 on home page on mobile

Solved

How to make collection list 2 by 2 on home page on mobile

Jehad1
Tourist
7 0 1

 

Capture.PNG

 

https://layalinoor.com/ 

instead of a carousel I want the collection list to show 2 by 2 in a box

 

Accepted Solution (1)

Spac-es
Shopify Partner
390 112 141

This is an accepted solution.

Add this code to this file: theme.css

@media screen and (max-width: 767px){
.collection-list {
    gap: var(--grid-gutter);
    display: grid;
    grid-column: 2;
    grid-template-columns: auto auto;
}
}

 file.png

 

Any donation is welcome! https://www.buymeacoffee.com/spacescoffee Thanks in advance!

View solution in original post

Reply 1 (1)

Spac-es
Shopify Partner
390 112 141

This is an accepted solution.

Add this code to this file: theme.css

@media screen and (max-width: 767px){
.collection-list {
    gap: var(--grid-gutter);
    display: grid;
    grid-column: 2;
    grid-template-columns: auto auto;
}
}

 file.png

 

Any donation is welcome! https://www.buymeacoffee.com/spacescoffee Thanks in advance!