@codekeshSubmitted over 2 years ago
I am facing issue opacity of icon while hovering. Please give me advice to fixed this. All feedback are welcome. Thank You
I am facing issue opacity of icon while hovering. Please give me advice to fixed this. All feedback are welcome. Thank You
Hi Keshav
Answering to your question, you can check the way I did it on my solution. Anyway:
.equil .overlay { position: absolute; top: 0; left: 0; visibility: hidden; opacity: 0; }
.equil img:hover .overlay {
visibility: visible;
opacity: 1;
}
<div class="overlay"></div>
block. Be creative!If you'd have some problems with that solution, you're welcome to ask more. Hope I helped you!
Good luck with that! Keep it going!