This topic has 4 replies, 2 voices, and was last updated 5 years, 5 months ago ago by Olga Barlow
Hi
I hope all is well.
On the woocommerce product pages, is it possible to have a magnifying glass over the main product image all the time, not just when you hover it so it lets people know you can make the image larger?
Many thanks for your help!
Hello,
Do you want to get the zoom button over the image? Something like this http://prntscr.com/nzvvyu ?
Then add the following custom CSS to child theme style.css
.images-wrapper .main-images:before {
width: 30px;
height: 30px;
border-radius: 5px;
background: #fff;
position: absolute;
right: 5px;
bottom: 5px;
font-family: 'xstore-icons';
content: '\e90b';
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
pointer-events: none;
}
Regards
Hi Olga,
Exactly what i needed 🙂
Thanks so much!
Scott
Hello,
You are welcome!
Regards
You must be logged in to reply to this topic.Log in/Sign up