I would like to move the product description to the left below the product media.
Current CSS:
@media only screen and (min-width: 750px) {
.product-template__media {
float: left;
width: 50%;
}
.product__content {
float: left;
width: 50%;
}
.product__content-main {
flex-wrap: wrap;
}
.product__description,
.product__form-container {
float: right;
width: 100%;
}
}
Any ideas?