column stack on mobile
-
How do I target the red column with three images?
I want to stop this block from stacking the images on mobile.This did work but there is no longer any space between the images:
.wp-block-columns.midmost-class.has-vivid-red-background-color.has-background {
flex-wrap: nowrap;
}I have targeted the top six images with…
@media (max-width: 480px) {
.wc-block-handpicked-products .wc-block-grid__products {
display: flex !important;
}.wc-block-handpicked-products .wc-block-grid__product {
flex: 1 0 33% !important;
}
}I have targeted the bottom four images with…
@media (max-width: 480px) {
.peter3-class .wc-block-grid__products {
display: flex !important;
}
.peter3-class .wc-block-grid__product {
flex: 1 0 25% !important;
}
}The page I need help with: [log in to see the link]
- The topic ‘column stack on mobile’ is closed to new replies.