For years, I've used css for a hover state effect that removes the thumbnail and reveals the gif playing behind it. It stopped working recently, and I can't figure out why. My portfolio is www.maxdufrechou.com.
No problem with the gifs I can tell, but the hover state is broken. Nothing happens when the cursor is over the thumbnails.
Here's the Shaq thumbnail for example:
/*Carnival CFO Shaq*/
#block-aa4e504464cfdcdbba23 {
background-image: url(https://static1.squarespace.com/static/6313ad8515db3003bd319b38/t/635ac308deb2fd44202ff940/1666892556596/GIF_Carnival_Shaq.gif);
background-size: cover;
background-position: center;
}
#block-aa4e504464cfdcdbba23:hover img {
display: none;
}
Any thoughts?