Change background from gray to white in OrgChart O365

Hello!

Is it possible to change the background color of the OrgChart webpart from gray to white? I know we can modify the boxes, but I wasn’t sure how to change the entire background. I did find a post from a similar request, but I wasn’t sure how to get this to work.

Any help would be great!

Hello @JenSWCA,

To change the background color please use the following CSS:

.poch-content{
  background: red;  
}

Best Regards,
Anna Dorokhova
Plumsail Team

1 Like

Excellent! Worked like a charm!

Thank you!

2 Likes

@Anna

This did not work for me using the CSS code below:

.poch-content{
background-color: #ff0000 !important;
}

The background of the web part is still an off white color.

Hi @CPrompt,

If you are using Org Chart v4, you can change the background color using the following CSS:

.poch-application-container .poch-content__viewport {
    background-color: #ff0000 !important;
}
1 Like

Thank you @a.cox, this worked perfectly! Any suggestions on how to get rid of the border on the web part?

You are welcome, @CPrompt!

The following CSS will remove the border of the web part:

.poch-application__web-part {
    border: 0px !important;   
}
1 Like