Hello,
i have encountered a weired problem:
When uploading a transparent png file it is showing up normal in the editor but leaves a grey shadow on the frontend when publsihed.
Anybody has an idea what this could be?
Hello,
i have encountered a weired problem:
When uploading a transparent png file it is showing up normal in the editor but leaves a grey shadow on the frontend when publsihed.
Anybody has an idea what this could be?
If you can share a link, it would be easier to target the problem.
This is the link with both variation:
Looks like it’s just a style applied to the image card. Adding this via Code Injection should solve it:
<style>
.kg-image-card {
background-color: transparent;
}
</style>
It worked
thank you so much.