How can I make the mobile view 2 pictures per row instead of 1?
yes, please try code
- Go to Online Store->Theme->Edit code
- Asset->/timber.scss.liquid->paste below code at the bottom of the file.
@media only screen and (max-width: 768px) {
#CollectionSection .grid-uniform {
display: flex;
flex-wrap: wrap;
}
#CollectionSection .grid-uniform .medium--one-half {
width: 50%;
}
}