How can I display two collections side by side on mobile?

Hi! I was really trying to search all day if there’s an app or a code that can do this for my website? I want it to make 2 collections next to each other on mobile rather than on on top of each other. Similar to Fashionnova. I’ll send a screenshot.

Can you provide link to your store?? Also let me know which section needs to be next to each other on mobile. I ill review it and provide answer accordingly.

Thank you

Hi! My store link is https://fiddystickers.com/

As an example. I would like Customer Favorites and Black n White to be next to each other. Something like the image attached below..

Hi @fiddystickers ,

Image:

![view - 2023-11-03T085638.475.png|887x818](upload://djaNbHpJX5IBxkMysMoV8LZvSVk.png)

Currently color stickers are located between black & white stickers and custom favorites

You can move COLOR STICKER to another place so that BLACK & WHITE STICKER and CUSTOM FAVORITE are next to each other.

You add a div tag with class custom-fiddystickers wrapped in black & white sticker and custom favorites. Then insert the css code as follows:

.custom-fiddystickers {
    display: flex;
    margin-bottom: 16px;
}

This is the desired result:


Hope it helps @fiddystickers !