Hello!
I am using the Dawn theme, and I have my product information set to Stacked. Right now, Stacked seems to make the main image large, and every image after that is side-by-side. Is there any way to make the images individually stacked vertically?
Adding css to the theme code of product page seems to be the answer to your requirement.
Indeed! User @iranmateu was able to help me achieve my goal with this code:
@media screen and (min-width: 750px) {
.product__media-list {
flex-wrap: unset;
flex-direction: column;
}
.product__media-list li {
width: 100%;
max-width: 100%;
}
}