Tagged: image overlay
HI I am trying to hide the circle/arrow animation on the image rollover but keep the transpareny effect.
I know this code:
.image-overlay {
visibility: hidden;
}
hides the entire rollover effect, but can’t find how to just hide the icon.
can you help with this?
thanks!
n
Hey Munford!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
span.image-overlay-inside {
display: none!important;
}
Cheers!
Yigit
thanks!
If I wanted text on the rollover would I do that as an image?
Hi!
You can remove the code i posted in my previous post and add following code to Quick CSS instead
.image-overlay.overlay-type-extern .image-overlay-inside:before {
content: 'your text';
font-family: 'entypo-fontello';
}
Regards,
Yigit
cool thanks!