Hi azstrel,
If you want the recent image overlay effect, then please use this code:
.x-feature-box-graphic-inner i {
background-color:rgba(0,0,0,0);
}
.x-feature-box-graphic-inner i:hover {
background-color:rgba(0,0,0,0.25)!important;
}
If you want the image overlay effect plus using different icon/image then please use this code “it’s modified than the previous one and it should work fine”:
.x-feature-box-graphic-inner i {
background-color:rgba(0,0,0,0);
}
.x-feature-box-graphic-inner i:hover {
background-color:rgba(0,0,0,0.25)!important;
}
.agriculture .x-feature-box-graphic .x-icon-leaf:hover:before {
content:"\f368" !important;
}
.contractors .x-feature-box-graphic .x-icon-wrench:hover:before {
content:"\f05d" !important;
}
.healthcare .x-feature-box-graphic .x-icon-hospital-o:hover:before {
content:"\f26e" !important;
}
.manufacturing .x-feature-box-graphic .x-icon-codepen:hover:before {
content:"\f26e" !important;
}
.transportation .x-feature-box-graphic .x-icon-truck:hover:before {
content:"\f05d" !important;
}
.more .x-feature-box-graphic .x-icon-ellipsis-h:hover:before {
content:"\f26e" !important;
}
Make sure to add the custom classes names.
Thanks.