Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello
I need help moving product title above product images. I need this for product pages and for mobile view only
My url is designsfordivine.com
I would appreciate any help,
Thanks very much
Solved! Go to the solution
This is an accepted solution.
Hi @omero
Try this one.
@media only screen and (max-width: 749px) {
.product__title.ezsd-root {
position: absolute;
top: 42%;
}
section#MainProduct-template--19358373314887__main {
padding-top: 100px;
}
}
@media only screen and (max-width: 545px) {
.product__title.ezsd-root {
top: 39%;
}
}
I hope it help.
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
This is an accepted solution.
Hi @omero
Try this one.
@media only screen and (max-width: 749px) {
.product__title.ezsd-root {
position: absolute;
top: 42%;
}
section#MainProduct-template--19358373314887__main {
padding-top: 100px;
}
}
@media only screen and (max-width: 545px) {
.product__title.ezsd-root {
top: 39%;
}
}
I hope it help.
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
Hello, thanks for your answer. It helped me moving my title above product. So I accepted as solution
Do you also know how to move price above product image for mobile?