Yes, you can definitely move the breadcrumbs above the product image. This usually involves adjusting the product.liquid (or main-product.liquid) template in your theme.
In most themes, the breadcrumb code block looks something like this:
{% render ‘breadcrumb’ %}
Right now, it’s probably located below the product image section. To move it:
Go to Online Store → Themes → Edit code.
Open the product template file (main-product.liquid or product.liquid, depending on your theme).
Locate the breadcrumb snippet ({% render ‘breadcrumb’ %}).
Cut it and paste it above the product image container.
Save and refresh to check the new position.
If you’re not seeing it in the product template, it might be inside a section or snippet file (like breadcrumb.liquid). In that case, just move the render call higher in the structure.
That should place your breadcrumbs exactly where you want them.