Hi,
im looking to move the product price to the top right on mobile only . my site is https://luxurymrkt.com/collections/y-3/products/y-3-classic-cotton-t-shirt
like this picture
Thank you
Hi,
im looking to move the product price to the top right on mobile only . my site is https://luxurymrkt.com/collections/y-3/products/y-3-classic-cotton-t-shirt
like this picture
Thank you
Hi,
Please add the code below to Assets > theme.css file.
@media only screen and (max-width: 768px) {
.product-single__meta .product-block--price {
float: right;
margin-top: -60px;
}
}
That’s for mobile only.
Hope it helps.