I have a Jitsi Meet instance installed via Vultr’s one click instances for my music classrooms.
I had customized the all.css based on these instructions:
"Since I installed using the quick-install guide, I can’t modify the WelcomePage.web.js file.
I actually can modify the text using CSS but I was looking for an easier way to do it.
Just in case someone wants to know, these are the steps using CSS:
nano /usr/share/jitsi-meet/css/all.css
Search for .header-text-title
Before .welcome .header .header-text-title add:
.welcome .header .header-text-title{visibility: hidden;}
Now edit the original .header-text-title
After .header-text-title add ::after
Inside the parentheses add content: ‘PUT-YOUR-TEXT-HERE’;visibility: visible;display: block;
It should look like this:
.welcome .header .header-text-title::after{content: 'PUT-YOUR-TEXT-HERE';visibility: visible;display: block;color:#fff;font-size:2........}
The you can follow the same steps to change the header-text-description"
It worked and I even made some other changes in the all.css to accommodate some customizations I wanted. After a Jitsi update though it reverted back to this:
I to create the custom background and logo I just have a folder saved somewhere that doesn’t get disturbed by updates and when there is an update I cp the images I want back to /usr/share/jitsi-meet/images and that works fine. Is there a file I can do the same thing for the text customizations on the welcome page? Then once I make the modification copy it to the external folder so it doesn’t get affected and when an update resets the customization all I need to do is copy it back?
Any help is greatly appreciated!