Hi,
If you use layouts for single products – the cart addition element has a special option that allows you to choose the label position on the side or above the variations.
If you are using a standard single product, add the following custom code to the Global Custom CSS area in the theme settings:
@media (min-width: 1025px) {
.product-image-summary table.variations tr {
display: flex;
flex-direction: column;
}
.product-image-summary table.variations .label {
margin-bottom: 5px;
}
}
Kind Regards