how to change collection list from single to double

i want to 2 collection list in mobile view to be like this 2 in same line

like this

instead of this

URL: https://redpandaoutdoor.in

Hi @Emiway1

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.
@media screen and (max-width: 768px){
collection-list.collection-list {
    grid-template-columns: repeat(2, 1fr);
}
}

Here is the result: https://prnt.sc/GQ7FW3QqCvaQ

I hope this help

Best,

Daisy

1 Like