Arrows:
.pswp__button.pswp__button--arrow--right::before {
background: none;
font-family: 'widgethelpfont';
content: '\f061';
font-size: 35px;
}
.pswp__button.pswp__button--arrow--left::before {
background: none;
font-family: 'widgethelpfont';
content: '\f060';
font-size: 35px;
}
Js anchors:
jQuery(document).ready(function ()
{
setTimeout(function ()
{
jQuery('.woocommerce-product-gallery li').click(function () {
jQuery('html, body').stop().animate({scrollTop: 0}, 500);
});
});
});