Rotate Blog image on hover

Add this code to the Custom CSS field on the Settings tab of your Blog widget’s settings:

a:hover div[class*="card-media-image"]:hover img {
    transform: rotate(180deg);
    transition: all 0.3s ease;
}

1 Like