Hi Lindsay,
The gap is made slightly larger than we’d like it because of that reset variations button that appears when you select a variation.
We can’t reduce that height or the margin below that else it would look wrong when the variation is selected. Unfortunately WooCommerce doesn’t hide the reset button when not shown, so the height is still used.
This CSS may improve it a little:
.variations_form .reset_variations {
line-height: 100%;
}
We’ve also improved the minimal form styling on the select boxes for the next update.
.woocommerce div.product form.cart .variations select, #jckqv table.variations td select {
padding-left: 0;
background-position: 100% center;
}
– Ed