Inverting transparent background of PNG images to white

Hi,

I was wondering if there is a way to invert the transparent background of PNG images to a white colour so that I can see the image on a dark background. Please see the image below for an example.

Thanks!

You can easily set the image background colour by adding this to your template styling:

img {
 background-color: white;
}
5 Likes

It worked! Thank you so much!

1 Like