Hi Enfold,
Is there a way to change the icon of the hover state on an image on a specific page?
I have a portfolio element that has only videos in it, using the ajax loader so it all loads within the section. However i get the default arrow icon. Would like to change it to the play button or something video related.
If possible, how can i go about this?
Thanks!
So i may have found a to achieve this, just incase someone stumbles across this
Make sure you have the custom CSS field enabled in ALB and add a class name to the element.
Then in the quick css add the following: (change the url to where ever your img is hosted at)
.your-custom-class .image-overlay.overlay-type-extern .image-overlay-inside:before {
content: '';
background-image: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png);
background-repeat: no-repeat;
background-size: contain;
background-position: 50% 50%;
}
https://kriesi.at/support/topic/custom-image-overlay-on-images/
Unless there is a better or more efficient way to do this, you can close this ticket. :)