How can I adjust the grid number for my blog articles?

Hi, is that anyway I can display the first articles as one grid followed by two grids in a row?
Current:

Looking for:

Link for my page: https://giant-bicycles.com.sg/blogs/guide

1 Like

Hello @seantay1993 ,
Add this CSS at the bottom of Online Store-> Theme->Edit code->Assets->style.min.css

.articles article:nth-child(1) {
width: 100% !important;
flex: 0 0 100% !important;
max-width: 100% !important;
}

Hello @seantay1993 ,
Add this CSS at the bottom of Online Store-> Theme->Edit code->Assets->style.min.css

.articles .post_nt_loop:nth-child(1) {
width: 100% !important;
flex: 0 0 100% !important;
max-width: 100% !important;
}