I am trying to make my columns on hover to have a box shadow. I successfully did so, but when you hover over the elements inside the column- the column’s box shadow goes away. Right now I have the following css (that is not working):
div#hi-line-product-columns-global:before {
box-shadow: 5px 5px 10px #f1f1f1 !important;
}
div#hi-line-product-columns-global:after {
box-shadow: 5px 5px 10px #f1f1f1 !important;
}
div#hi-line-product-columns-global:hover {
box-shadow: 5px 5px 10px #f1f1f1 !important;
}
div#hi-line-product-columns-global:active {
box-shadow: 5px 5px 10px #f1f1f1 !important;
}
div#hi-line-product-columns-global:focus {
box-shadow: 5px 5px 10px #f1f1f1 !important;
}
div#hi-line-product-columns-global:focus-within {
box-shadow: 5px 5px 10px #f1f1f1 !important;
}