Regarding hover

image

how i can add hover in this section so grey tick image can change to blue tick image when i hover any were in this part ?

1 Like

Hi Amar Agarwal, this is a really good question. We’ll get back to you with a solution shortly!

Hi Amar Agarwal,

solution 1.You can change the grey tick image to blue tick image on hover
solution 2.Use icons instead of grey tick images and change the color of that icon
eg:

.card:hover i{
    color:#5243C0;
}
.card:hover{
    transform: scale(1.1);  
    box-shadow: 0px 5px 5px lightgrey;
}
1 Like