How can I arrange multicolumn images on dawn theme efficiently?

Hi All,

Does anyone know how to achieve this in multicolumn images on dawn theme? Equal columns and utilizing the spaces from left to right?

Site: https://sparkt-outdoor-gear.myshopify.com/

Pass: 12345

@jbvergara ,

Please check the screenshot I have sent.

remove the text and heading. add the images in multi-column then adjust the space with CSS.

1 Like

Hi,

I would be needing help on how to adjust the CSS for that one, you have script to do that?

@jbvergara ,

.page-width.section-template--16831166808355__f677c442-839a-4401-b5f3-12e6df3adfe3-padding.isolate {
    padding: 0;
    max-width: 100%;
    margin: 0;
}
ul#Slider-template--16831166808355__f677c442-839a-4401-b5f3-12e6df3adfe3 {
    column-gap: unset;
}
ul#Slider-template--16831166808355__f677c442-839a-4401-b5f3-12e6df3adfe3 li {
    max-width: initial;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid

1 Like

Awesome that worked! Thanks.

Is there a way to make it small vertically?

@jbvergara

Please like and accept the solution.

1 Like

@jbvergara ,

img.multicolumn-card__image {
    max-height: 610px;
}

.media--portrait {
    padding-bottom: 102%;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid

1 Like

You are amazing! Thanks!

I’m using the Refresh theme, which I’m told is based off of Dawn. However, I do not have a theme.scss.liquid. Is there a way to do this with the Refresh theme?