Hi,
I would like to target all images with the following CSS:
.avia-image-container-inner a {
box-shadow: 0px 0px 20px #D9DCDE;
}
.avia-image-container-inner a:hover {
box-shadow: 0px 0px 5px #CACDCE;
}
.avia-image-container-inner img {
box-shadow: 0px 0px 20px #D9DCDE;
}
However, there is one image which I would like to have without a shadow. How can I do that?
Thank you in advance!
Best,
Anton
Hey tonydobrevski,
You can target all images with this CSS:
img {
your CSS here
}
You can assign classes to the exceptions: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
then target them with the class:
.your-class {
your CSS here
}
Best regards,
Rikard
Hi Rikard,
Thank you very much! This did the job!
Best,
Anton
Hi Anton,
Glad that Rikard helped you. Thanks for using Enfold :)
Best regards,
Nikko