I want to move my product title above the product image on mobile

I want to move my product title above the product image on mobile

Antzahr
Tourist
4 0 3

Please help!

Replies 4 (4)

Antzahr
Tourist
4 0 3

my url is voribrand.com

Made4uo-Ribe
Shopify Partner
8232 1976 2424

Hi @Antzahr 

Try this one. 

  • From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  • Find the theme that you want to edit and click on "Actions" and then "Edit code".
  • In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

@media only screen and (max-width: 749px){
.product__title {
    position: absolute;
    top: 20%;
    left: 10%;
    right: auto;
}

.grid__item.product__media-wrapper.product__column-sticky {
    padding-top: 70px;
}
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1694115283059.png

     

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
Antzahr
Tourist
4 0 3

it sort of worked however it messed the text up on my home page and for some reason it shows it moved in the shopify store editor but not when i go to my site on my actual phone

Made4uo-Ribe
Shopify Partner
8232 1976 2424

Oh, Try this one maybe. 

Same Instruction. 

 

 

@media only screen and (max-width: 749px){
#ProductInfo-template--20167987036466__e4dc398e-2360-4c1a-880e-966155cc07f5 > h2  {
    position: absolute;
    top: 0%;
    left: 10%;
    right: auto;
}

#shopify-section-template--20167987036466__e4dc398e-2360-4c1a-880e-966155cc07f5 > section > div > div > div.grid__item.product__media-wrapper {
    padding-top: 70px;
}
}

 

 

And Save. 

Made4uoRibe_0-1694117008890.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

 

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.