Popup transparent

Hello!

can anyone tell me how to make the background of a popup fully transparent?

Now root container has background transparency set, but does not works.

thanks!!

This thread might help, it covers exactly how to target specific Perspective popups using their popup ID, including making only selected popups transparent via "stylesheet.css":

@Sanganak_Kasare has already put you on the right track – I'll just add some details to get you moving quickly towards a solution here.

First, enable the Advanced Stylesheet via a right click on the Styles folder within the Perspective project browser node.

Within that new project resource – target the popup and set the background to transparent. You may also want to remove the default border for a fully transparent effect.

.ia_popup {
    background-color: transparent;
    border: none;
}

That should do it, happy developing!