How to make an active layer that's behind another one?

the rectangle png is positioned on top of the snowflake with a ‘hole’ cutout in it
i want to make the snowflake clickable, but the transparent part of the rectangle.png gets treated as a visible layer so i can’t “click throught it”

any ideas how to achieve this?

Hey there @gokuonatree :grinning:
To make the snowflake clickable despite the transparent parts of rectangle.png blocking it, you can use CSS to set pointer-events: none; on the rectangle image. This CSS property allows clicks to pass through transparent areas, ensuring users can interact with the snowflake beneath. Ensure the snowflake is positioned correctly above the rectangle in your HTML structure for this to work seamlessly.

thank you, it worked.

for those interested, you can follow this link to see how to add code

and here’s how the added code looks like: