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?
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?
You can do that by adding this code at bottom of your styles.css file
.product-gallery {
position: sticky;
top: 0px;
}
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.
@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;
}
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
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.
Do you want it always appear event you scroll to very bottom of your page?
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
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.
Take a look at this product on your phone
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
Oh my. I see what you mean. That could be annoying. Please change the code provide to this.
@media only screen and (max-width: 481px) {
.pplrabs {
position: relative !important;
}
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
I understand. I do see the problem. Please see my reply above.
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
This image not showing fixed but floating at bottom of page also
You may explain by images to more clearly, we dont get your mean
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.
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;
}
}
my product image, sorry. The main product image is not showing correctly on mobile. It works fine on desktop
That worked!!! Thank you soooo much!!!
Thank you too for likes. I am glad I am able to help ![]()