Hi I have a few images that are changing on a column hover, but they jump/flicker on the first hover. I have added CSS to preload the image, but it still has the same effect. Is there a different way I should be going about this.
I am using an image element as the original image and this is what I am using to change the image on hover
#rural-column:before .x-image {
content: url('http://35.201.4.103/wp-content/uploads/2020/07/AOGWRVN-Icon_Rural-Development-51.png');
display:none;
}
#rural-column:hover .x-image {
content: url('http://35.201.4.103/wp-content/uploads/2020/07/AOGWRVN-Icon_Rural-Development-51.png');
}