Anyone know how to change product page so that it is 2 columns of products instead of one in the mobile version.
Shop URL: https://www.fieldofhope.nl/
Anyone know how to change product page so that it is 2 columns of products instead of one in the mobile version.
Shop URL: https://www.fieldofhope.nl/
@ailene - please add given css to the very end of your theme.scss file and check
.template-collection .card-list__column{display: flex; flex-wrap: wrap;}
.template-collection .card-list__column .card { width: 50%; padding: 5px;}
Now i have on web 6 in a row. instead of 3
@ailene - very sorry, remove those lines and add this, I forgot media queries
@media screen and (max-width:749px){
.template-collection .card-list__column{display: flex; flex-wrap: wrap;}
.template-collection .card-list__column .card { width: 50%; padding: 5px;}
}