Hi, thanks for the reply. As it turns out, I was able to figure this out myself using custom CSS code. Here’s the code I ended up using:
To change the size of the description text:
.woocommerce-variation-description {
font-size: 120%;
}
To change the size of the option titles:
.table.variations {
font-size: 130%;
}
To change the size of the “in stock” text to match description:
.stock.in-stock {
font-size: 130%;
}
Could something similar be used to change the font size for the variation descriptions/summaries?