Preventing Gallery Image stacking on Mobile - Envy Theme

I’m using Envy theme. Does anyone know how to prevent the four images in the Gallery on my homepage from stacking on mobile?

My Shopify site is: olivia-rust-collection.myshopify.com

Desktop View:

Mobile View:

Hi @oruest ,

Do you want 4 Gallery images on mobile to show 1 row like desktop?
Please confirm again, so we can help you

Thank you!

Hi!

Yes, I would like 4 Gallery images on mobile to show in 1 row like the desktop.

Thank you!

@AvadaCommerce

Yes, I would like 4 Gallery images on mobile to show in 1 row like the desktop.

Thank you!

Hi @oruest ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme-index.min.css->paste below code at the bottom of the file:
@media (max-width: 767px) {
    #shopify-section-1610589524a71d68d3 .image-bar {
    flex-wrap: nowrap;
    overflow: auto;
}

#shopify-section-1610589524a71d68d3 .image-bar .grid__item {
    width: 70%;
    min-width: 70%;
}
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.