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
A user seeks to reposition the product price to the top right corner on mobile devices only for their Shopify store using the Impulse theme.
Proposed Solution:
theme.css file in the Assets folderfloat: right and negative top margin to reposition the price elementStatus:
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.