Hi, I uploaded a PNG with transparent background as the main product images but inside a masonry gallery showcasing the various products the images are showing with a white background – https://www.screencast.com/t/vgYGmpj0 – why is this and how can I fix it so the image will show with a transparent background?
Thanks.
Hello bakbek,
try to set that code in quick CSS on Enfold theme options -> General Styling.
.av-masonry-image-container {
background-color: transparent !important;
}
Thank you
That didn’t work.
do it to the outerimage container:
.av-masonry-outerimage-container {
background-color: transparent !important;
}
and if you want the figcaption too:
.av-masonry-container figcaption {
background-color: transparent !important;
}
and if that little arrow is disturbing :
.av-masonry-entry .avia-arrow {
display: none;
}
Great, thanks!