How can I shift my product photo from right to left on the product page?

how to i move my product photo from right to left?

1 Like

@thehomemovement

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

Thehomemovement.com

1 Like

@thehomemovement

thanks for the store URL can you please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.min.css ->paste below code at the bottom of the file.
    this code apply for after 5 - 6 second
@media only screen and (min-width: 61.85em) {
.product--template>.product__content {
    order: 2;
    grid-column: right;
}
.product--template>.product__wrapper {
    grid-column: left;
}
}