Impulse Theme Change Zoom ? icon to plus sign product page

change to this :index_pointing_up:

Hi All

min trying to change my zoom icon to a + plus
sign like picture below and position it more to the right

my site is https://luxurymrkt.com/collections/newest-products/products/stone-island-ice-jacket-camouflage-archivio-t-shirt

my site

change to first pic up top*

thank you Mike

1 Like

Hi @Luxurymrkt

  1. From your Admin Page, click Online Store > Themes >Actions > Edit code
  2. In the Asset folder, open the theme.css
  3. Paste the code below at the very bottom of the file.
button.btn.btn--body.btn--circle.js-photoswipe__zoom.product__photo-zoom {
    border: none;
}

button.btn.btn--body.btn--circle.js-photoswipe__zoom.product__photo-zoom:after {
    content: "+";
    position: absolute;
    transform: scale(3);
    left: 10px;
    top: 10px;
}

.image-wrap svg.icon.icon-search {
    display: none;
}
1 Like

Worked perfect thanks