Hi,
I got the size guide to move to the right but want it above the variants. My site is https://vazluxe.com/collections/chloe-1/products/chloe-kick-sneakers
A user needed to reposition their size guide on a Shopify product page to appear above the product variants instead of below them.
Solution provided:
.js-enabled.product__option and positions the size guide popup element absolutelyOutcome:
The issue was resolved successfully. The user confirmed the solution worked as intended.
Hi,
I got the size guide to move to the right but want it above the variants. My site is https://vazluxe.com/collections/chloe-1/products/chloe-kick-sneakers
hi @Luxurymrkt
please consider updating the theme.css with CSS.
theme.css
.js-enabled.product__option {
position: relative;
}
.js-enabled.product__option a.product__information-popup.product__block.product__block--medium.fs-body-75 {
position: absolute;
top: 0;
right: 0;
margin: 0;
}
output:
THANKS SO MUCH .