Re: Change code for mobile on Flex Theme to keep product image set and not floating

Solved

Change code for mobile on Flex Theme to keep product image set and not floating

MissyP2
Excursionist
16 0 4

 

Store is hiccupschildrensboutique.com 

 

When scrolling down on mobile device my image goes away.  Is there a way to change the code to have the image set instead of floating?

 

no image.JPG

 

 

Accepted Solution (1)
Made4uo-Ribe
Shopify Partner
8385 2004 2463

This is an accepted solution.

My bad, I miss that one. Can you add the code below to the same style.css file

 

@media only screen and (max-width: 481px) {
  .pplrabs {
    display: none;
}  
}
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.

View solution in original post

Replies 18 (18)

Dan-From-Ryviu
Shopify Partner
9668 1936 1971

You can do that by adding this code at bottom of your styles.css file 

.product-gallery {
position: sticky;
top: 0px;
}

- Helpful? Like and Accept solution! Support me! Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Ryviu: Aliexpress Reviews - AliExpress Reviews Importer, one-click import aliexpress reviews, export reviews to CSV file.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

Made4uo-Ribe
Shopify Partner
8385 2004 2463

Hi @MissyP2 

 

As what I understand, you want the image in mobile to be on top when ever the customer is scrolling down on mobile. This might be confusing for customers, that is why added some background to your image. 

 

  • 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: 750px) {
.product__images.one-half.column.medium-down--one-whole {
    position: sticky;
    top: 1rem;
    background: white;
    z-index: 2;
}
}

 

  • And Save. 
  • Result:

Made4uoRibe_0-1700016659247.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.
MissyP2
Excursionist
16 0 4
I tried adding that code at the end of this which is styles.css but still not working. My images are basically not showing half of the time. They keep disappearing as you scroll up and down.




Dan-From-Ryviu
Shopify Partner
9668 1936 1971

Do you want it always appear event you scroll to very bottom of your page?

- Helpful? Like and Accept solution! Support me! Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Ryviu: Aliexpress Reviews - AliExpress Reviews Importer, one-click import aliexpress reviews, export reviews to CSV file.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

MissyP2
Excursionist
16 0 4

I want it to be a fixed image so if I scroll to the bottom of the page you will not see it until you scroll back up.  Right now it comes and goes.  It is floating but actually goes away half the time.  

 

MissyP2
Excursionist
16 0 4
Made4uo-Ribe
Shopify Partner
8385 2004 2463

Oh my. I see what you mean. That could be annoying. Please change the code provide to this.

 

  • 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: 481px) {
.pplrabs {
    position: relative !important;
}
}

 

  • And Save. 
  • Result:

Made4uoRibe_0-1700020623416.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.
Made4uo-Ribe
Shopify Partner
8385 2004 2463

Oh. What device are you using? I do not see this problem in my end. Can you show us a video of the problem? So my understanding is you want the image to be always there even when scrolling, which could cover half of the screen

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.
MissyP2
Excursionist
16 0 4

I don't want the image to be visible when scrolling.  I want it in a fixed position and if you scroll down you may not see it but that's ok.  Here is the link to a product.  Look at it on a phone.  I will try to record but this is probably easier

 

 

https://hiccupschildrensboutique.com/collections/new-arrivals/products/personalized-stroller-blanket...

Made4uo-Ribe
Shopify Partner
8385 2004 2463

I understand. I do see the problem. Please see my reply above. 

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.
MissyP2
Excursionist
16 0 4

Ok that fixed part of the problem.  it is now fixed but if you scroll on that same product down to the bottom of the page a second image of the blanket is still floating around

 

MissyP2
Excursionist
16 0 4
Dan-From-Ryviu
Shopify Partner
9668 1936 1971

You may explain by images to more clearly, we dont get your mean

- Helpful? Like and Accept solution! Support me! Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Ryviu: Aliexpress Reviews - AliExpress Reviews Importer, one-click import aliexpress reviews, export reviews to CSV file.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

MissyP2
Excursionist
16 0 4

my product image, sorry.  The main product image is not showing correctly on mobile.  It works fine on desktop

 

MissyP2
Excursionist
16 0 4

i don't know what's happening some images don't show at all and others are fixed but all products still have roaming image at the bottom.

 

Made4uo-Ribe
Shopify Partner
8385 2004 2463

This is an accepted solution.

My bad, I miss that one. Can you add the code below to the same style.css file

 

@media only screen and (max-width: 481px) {
  .pplrabs {
    display: none;
}  
}
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.
MissyP2
Excursionist
16 0 4

That worked!!!  Thank you soooo much!!!

 

Made4uo-Ribe
Shopify Partner
8385 2004 2463

Thank you too for likes. I am glad I am able to help 😊

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.