Impulse theme align product price - 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 :down_arrow:

Thank you

@Luxurymrkt

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.