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!
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;
}
It worked! Thank you so much!