Okay
  Public Ticket #2822586
remove magnify glass shop item
Closed

Comments

  •  4
    sarah started the conversation

    hello,

    how can i remove magnify glass on shop photo individual page? thanks!

  •  8,847
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    /* hide zoom icon and bigger image */
    .woocommerce div.product div.images .woocommerce-product-gallery__trigger {
        display: none !important;
    }
    .woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg {
        display: none !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  4
    sarah replied

    this worked! thank you!