How do I adjust the image hover transparency to be black and more transparent?
There’s 3 boxes on the home page under the slider that have a white transparency. I’d like to make it black and adjust the level.
Hey koala!
Add this code to Quick CSS or custom.css:
.avia_transform .image-overlay {
background:#000;
}
.avia_transform a:hover .image-overlay {
opacity: 0.6 !important;
}
Change the opacity to your preferred level (between 0 and 1).
Regards,
Arvish
That works, but it also makes the blue circle transparent and I’d like to keep that visible.