adurward reacted to
Beyondspace in How to move “sold” items to bottom of page
Feel free to try my solution if it fit, Copy to Settings->Design->Custom css,
.products.collection-content-wrapper .products-flex-container .list-grid .grid-item.sold-out {
order: 2
}
.products.collection-content-wrapper .products-flex-container .list-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
@media only screen and (max-width: 768px) {
.products.collection-content-wrapper .products-flex-container .list-grid {
grid-template-columns: 1fr;
}
.products.collection-content-wrapper .products-flex-container .list-grid .grid-item {
width: 100%;
}
}
.products.collection-content-wrapper .products-flex-container .list-grid .grid-item {
width: 80%;
}