How can I adjust the position of the size variant on my website?

Topic summary

A user seeks to reposition the size variant selector on their product page to create better spacing between elements.

Problem: The size variant appears too close to other page elements, affecting the visual layout.

Solutions Proposed:

  • Sansaar’s approach: Provided CSS targeting .product-single__meta>div:nth-child(2) with positioning adjustments, including hiding certain child elements and setting absolute positioning with specific width/positioning values.

  • Ujjaval’s solution: Recommended adding CSS to the base.css file targeting .product-block with modified margin-bottom (0px) and padding-bottom (11px), plus adjustments to .shopify-payment-terms margin.

Both responses include code snippets and reference screenshots to illustrate the changes. The discussion remains open as the original poster has not confirmed which solution worked or provided feedback on implementation.

Summarized with AI on November 21. AI used: claude-sonnet-4-5-20250929.

Hi I’m looking to move the size variant up so there’s more space between the bottom and top looks better

my site is https://luxurymrkt.com/collections/footwear-1/products/bottega-veneta-women-swell-flat-gloss-vinyl-platform-loafer-1

Hello,

Please check this span short you need just like this.

https://prnt.sc/IvaN2zwc_6M2

if Yes The Try this CSS

.product-single__meta>div:nth-child(2){
    position: relative;
}

.product-single__meta>div:nth-child(2)>div:nth-child(3){
      position: absolute;
      TOP: 0PX;
      RIGHT: 0PX;
      WIDTH: 50%;
}
.product-single__meta>div:nth-child(2)>div:nth-child(3)>div:nth-child(1){
      display:none;
}

@Luxurymrkt add below css into base.css file

.product-block {
    margin-bottom: 0px !important;
    padding-bottom: 11px !important;
}
.shopify-payment-terms {
    margin: 15px 0 !important;
}