Hello,
Yes, we have hidden labels for this layout to free more space since the right column is sticky and all information can be higher than window height. Anyway, you can easily display them with this simple code fix. Add it to the Custom CSS
.product-design-sticky .variations td {
text-align:left;
}
.product-design-sticky .variations td.label {
display:table-cell;
}
.product-design-sticky .variations td {
text-align:left;
}
.product-design-sticky .variations {
width:200px;
margin:0 auto;
}
Also, you can fix last dropdown offset by fixing margin for “Clear” button
.product-design-sticky .variations .reset_variations {
margin-right: -64px;
}
Regards