New Shopify Certification now available: Liquid Storefronts for Theme Developers

How do I change the page layout from 2 columns to 3 columns in refresh theme?

Jackeroo
Visitor
2 0 0

I'm using the Refresh theme and I want to change the blog collection page from 2 columns to 3-4 columns. I couldn't find the relevant setting in the theme settings, so I'm wondering how to achieve this. 

Thanks in advance for any help from the technical experts.

 
 
 
Reply 1 (1)
Jackeroo
Visitor
2 0 0

solved. but need more tips:
Just add custom css under blog settings:

.article-card__image {
aspect-ratio: 16/9;
}
.blog-articles {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
}