How to remove or hide "Full Screen" option in Zoom Web SDK

Description
I have successfully added Zoom Web SDK into the Moodle site. Then I added the link to iframe link in the course page. It worked well.

The client wanted to remove the “Full Screen” option visible in the zoom video.

Error
I didn’t find a way to remove the “Full Screen” option in zoom video

Which version?
Latest version. I downloaded Web SDK few days ago.

Screenshots

Device (please complete the following information):

  • Device: Dell Laptop
  • OS: Windows 10
  • Version: Latest version
  • Browser: All browsers

Additional context
We need to find a way to either disable or hide the “Full Screen” option that comes in Zoom video. I have added the SDK to cPanel.

Hey @bhanukawork,

The Web SDK does not have a built in option to remove the full screen button.

However, you can hide it with your own CSS or JavaScript. :slight_smile:

Thanks,
Tommy

1 Like

Thanks for the advice. It worked.

I added this code in Meeting.html head section.

<style>
.full-screen-icon{
     visibility:hidden;
}
</style>

Full Screen icon is hidden now.

1 Like

Happy to help! :slight_smile:

Thanks for sharing the code you used!

-Tommy

1 Like

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