-
How to bring the product title to the top of the product page and followed by the product images for mobile inside the Dawn theme?
-
How to reduce the product image size (even smaller than default media size-small)
Hi Gauresh,
I am Sandeep and I am trying to help you.
To move the product title to the top and reduce the size of the image you have to write some code.
If you need help then let me know i will do it for you.
Regards
Sandeep
Hi @Gauresh_1 , you can do that by adding code on your store admin > Sale channels > Online store > Themes > Edit code > Assets > open base.css and add those code at the bottom
1. Move title to the top on mobile
@media screen and (max-width: 749px) {
.product { position: relative; }
.product .product__title { positon: absolute; top: 0px; }
.product .product__media-wrapper { padding-top: 150px; }
}
- Reduct product image size
.product-media-container .product__modal-opener { padding: 40px; }
Hi Dan,
Thanks for sharing this. I tried it - it creates a blank space but the title won’t appear in that space.
Screenshot attached.
-
- Reduct product image size
The product size also won’t change after using the code.
~Gauresh

