-3

how can I change html code of rooms in BigBlueButton source code??and how can I change Css of elements in room sessions? for example i want to set 'display:none' for logo of bigbluebutton in room.

1 Answers1

0

You need to put style="display:none;" in the tag of the concerned logo. it would look like: <img src="the_logo_path" style="display:none;">

or you can put an id on that tag in html file and then in CSS stylesheet you can add display:none; property. e.g. in HTML file <img id="bbb_logo" src="xxxxxxx"> in Stylesheet: #bbb_logo { display: none;}

Fahad Khan
  • 21
  • 1
  • 6
  • I know that . but I can't find the source in my server – Arm United Aug 12 '20 at 07:12
  • Open the rooms and find the respective id or class via DevOps Tools provided by the browser (Ctrl+I), when you get it you can add it at the end of the stylesheet. – Fahad Khan Aug 12 '20 at 08:53