Hi @Jennine,
Thanks for writing in!
Please be advised that you cannot have two or more elements using the same ID. An element ID must be unique and should be only used once. If you want to apply the hover effect in other columns, please make use of the class instead. And then use this updated custom css code:
.issues-col{
position:relative;
}
.issues-col{
opacity: 1;
-webkit-transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
transition:all 0.3s ease;
}
.issues-col:hover{
opacity: 0.4;
}
.issues-col > a{
display:block;
position:absolute;
width:100%;
height:100%;
top:0;
left:0;
z-index:10;
}
We would loved to know if this has work for you. Thank you.