Is there any setting to remove or edit the translucent layer that appears over thumbnails on the post slider when you hover your mouse over them?
Hi,
You can add this on your custom.css or Quick CSS
.image-overlay {
background: transparent;
}
If you want to remove the circle, use this instead.
.image-overlay {
display: none;
}
Regards,
Ismael
Thanks for the help Ismael.
.image-overlay {
background: transparent;
}
works fine but the other command to remove the circle doesn’t work.