Is it possible to move the product navigation arrows atop the product gallery, instead of below? (Prestige Theme)
Store link: harminharmin.myshopify.com
Any help coding assistance would be much appreciated!
Is it possible to move the product navigation arrows atop the product gallery, instead of below? (Prestige Theme)
Store link: harminharmin.myshopify.com
Any help coding assistance would be much appreciated!
Hello @the_mudd_shop , It would need customization to implement this feature, Unfortunately, there is no simple solution otherwise I will be happy to help you. I would suggest hiring a Shopify expert to assist you OR feel free to contact me. I have done this same customization on Prestige theme for one my client in past. I can share the example with you, do private message me or mail me directly.
I know this is old, but if someone still needs to implement this, here is a solution:
"prevNextButtons": false,
And change it to:
"prevNextButtons": true,
Then write before {% schema %}, add this bit of code:
.Product__Slideshow .flickity-prev-next-button {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
.Product__Slideshow .flickity-prev-next-button.previous {
left:0;
}
.Product__Slideshow .flickity-prev-next-button.next {
right:0;
}
Good luck
Marcos Watanabe
I implemented this, the arrows are working fine however when I click on the back arrow after viewing all the images, the images do not load.
The code you said to implement before the {% schema %} tag, liquid doesn’t allow me to place it before the tag saying inavlid JSON in tag schema.
Thanks,
Thank you so much! There is one bug- please help me out here! This works great but the images disappear after the slider reaches its end.