Are we able to revise css when we are trying to include the Web Client SDK?

Hi, forum!

happy new year?!
(little bit late to say it…)

are we able to revise css when we are trying to include the Web Client SDK?
I guess it’s not allowed us to revise css style for it.
because I included the Web Client SDK and both css crashes then I cannot insert the Web Client SDK.
so Could you please advise on this?

dear you.

thanks.

Hi @dugksl23,

Is the app crashing when you adjust the CSS or are you unable to view it? If it’s the latter, have you tried putting Zoom into its own div?

The Zoom Meeting UI is not actually attached to the body, but the css makes it seem that way because of the following styles—which can lead to confusion:

#zmmtg-root {    width: 100%;    height: 100%;    position: fixed;    top: 0;    left: 0;    background-color: black;}

The Zoom Meeting UI will be rendered in the tag with the zmmtg-root id. You can place this anywhere in your project. You can also customize the css classes that are generated as well.

<div id="zmmtg-root"></div> 

Let me know if this helps or if you can share some additional details.

Generally, we recommend keeping the CSS dependencies.

Thanks,
Will

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.