WP Version: 3.9
Theme: Enfold
When I hover over a picture the box shades and a green circle with an arrow appears.
How do I change the color of that circle to another color?
Thanks.
Hi Micheal0424!
Thank you for visiting the support forum!
Please add this on Quick CSS or custom.css to change the background color of the circle:
span.image-overlay-inside:before {
background-color: blue !important;
}
If you want to change the color of the icon inside, use this:
span.image-overlay-inside:before {
background-color: blue !important;
color: black !important;
}
Regards,
Ismael
Worked perfectly, thanks.