Re: How can I reposition the product title above product image on mobile view in Dawn theme?

How can I reposition the product title above product image on mobile view in Dawn theme?

BuriedInWork
Tourist
25 0 2

How can I reposition the product title above product image on mobile view in Dawn theme?

Replies 6 (6)

Ahmad31
Shopify Partner
168 14 20

provide the link of your store

 

Love my work? Buy Me A Coffee
Hire Me: Email me Or Chat on Whatsapp
If you found my solution helpful, please like and accept it. Your support is greatly appreciated!
Ahmad31
Shopify Partner
168 14 20

 

  • Go to Online Store > Themes > Edit Code.
  • Open your theme.css or theme.scss.liquid file.
  • Add the below CSS at the end of the file.
  • Save and preview your store on mobile.

/* Reposition the h1 product title above the image on mobile */
@media (max-width: 767px) {
.product-title {
display: block;
margin-bottom: 10px; /* Add spacing as needed */
}

/* Make sure the image appears below the title */
.product-image {
order: 2;
}

.product-title {
order: 1; /* Ensure title is displayed first */
}
}

 

Love my work? Buy Me A Coffee
Hire Me: Email me Or Chat on Whatsapp
If you found my solution helpful, please like and accept it. Your support is greatly appreciated!
BuriedInWork
Tourist
25 0 2

Hey Ahmed. I tried adding that to the theme.liquid page but nothing changed. Any other ideas? Thanks!

Tech_Coding
Shopify Partner
504 128 126

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width: 767){
   .product{
       padding-top: 202px !important;
    }
    .product .product__title {
       position: absolute;
       top: -602px;
    }
}
</style>

Tech_Coding_0-1729000018121.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.
BuriedInWork
Tourist
25 0 2

Thanks for the assist. Unfortunately, it didn't seem to change anything. Any ideas?

 

BuriedInWork_0-1729005889004.png