Custom grid with images on prestige theme

Hi,

I am working with prestige theme.
I want to have the following grid of images on the homepage. Everything looks like I want it to on the homepage, but I am not able to make it mobile responsive. I would really appreciate any help!

Code:

This section is not visible on your website.

I just published it so that you can see it.

Thank you

you want to show as it is on mobile view or 1 by 1

I would like to show it on mobile 1 image under the other, or like this:

whatever is easier !

Hi @danielagsb ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css->paste below code at the bottom of the file:
@media (max-width: 500px) {
    .template-index .grid-wrap {
        display: block !important;
    }
    .template-index .grid-wrap .row {
        display: flex;
    }
}

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

2 Likes

THANK YOU SO MUCH!

1 Like