Transparent backgound

Is there a way to make the Org Chart background transparent?

Hi,

Thank you for your question.

Sure, you can. Just open the configuration wizard, switch to "Custom CSS" step and paste this code into code editor:

.poch-content{ background: none; }

This is how will look like:


Update: It is better to use white background instead of transparent to avoid issues with printing in Office 365 version. You can use code like this:

.poch-content{ background-color: white; }