My theme is “broadcast” and I want to remove arrows on zoom image:
How can I remove them?
this is the link https://joybebeboutique.com/ , password is: stowdo
A user working with the Broadcast theme wants to remove navigation arrows that appear when zooming into product images.
Solution Provided:
Multiple community members offered nearly identical CSS-based solutions:
display: none;.pswp__button--arrow--left and .pswp__button--arrow--right classesKey Details:
My theme is “broadcast” and I want to remove arrows on zoom image:
How can I remove them?
this is the link https://joybebeboutique.com/ , password is: stowdo
Hello @SPStore
Go to online store ---------> themes --------------> actions ------> edit code------->Theme.css
add this code at the end of the file.
.pswp[data-pswp-option-classes*="pswp-zoom-gallery"] .pswp__button--arrow--right, .pswp-zoom-gallery .pswp__button--arrow--right {
display: none;
}
.pswp[data-pswp-option-classes*="pswp-zoom-gallery"] .pswp__button--arrow--left, .pswp-zoom-gallery .pswp__button--arrow--left {
{
display: none;
}
and the result will be
If this was helpful, hit the like button and mark the job as completed.
Thanks
Hello There,
.pswp__scroll-wrap .pswp__button.pswp__button--arrow--left {
display: none;
}
.pswp__scroll-wrap .pswp__button.pswp__button--arrow--right {
display: none;
}
Hi @SPStore
Check this one.
zoom-images.product__slides .slider__arrows {
display: none;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Thanks a lot…
please hit the like button also.