Move product title above image on product page

How can I move the product tile above my image for mobile?

I’m using Dawn 8.0.0 and my Shopify link is https://droughtinc.myshopify.com/products/explorer-shirt-1-1

1 Like

@harrisness

oh sorry for that issue but how can i check your store password protect

Hi @harrisness ,

This is Victor from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/section-main-product.css->paste below code at the bottom of the file:

@media (min-width: 492px) and (max-width: 749px) {
.product__title {
    position: relative;
    top: -500px;
}
}

 @media (min-width: 320px) and (max-width: 491px) {
.product__title {
    position: fixed;
    top: 190px;
}
}

Hope my answer will help you.

Best regards,

Victor | PageFly

tickaw