I want to save some selling space for product details and notice that the “shop” line takes two lines [4 interest-free installments, or from $32.40/mo with…]
AND the drop-down menus pile up one below the other, especially if it’s a simple yes/no, black/white, top/bottom selection.
HOW do I amend the code to show 1x, 2x or 3x drop-down menus side by side (on a single line)?
In the “Product pages” section in the “custom css”
For Shopify Payment Terms
you can hide it:
shopify-payment-terms {
display: none;
}
or change the font size:
shopify-payment-terms {
font-size: 12px;
}
For your variant picker:
.variant-picker--product-available .option-selector {
display: inline-flex;
flex-wrap: wrap;
}