Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Re: 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
9085 2172 2681

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 are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
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
9085 2172 2681

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 are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.