<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Videoconferencing &amp;mdash; Kicou</title>
    <link>https://blog.kicou.info/tag:Videoconferencing</link>
    <description>Random thoughts and ramblings</description>
    <pubDate>Tue, 14 Apr 2026 18:38:11 -0400</pubDate>
    <item>
      <title>Jitsi Meet: How to display names</title>
      <link>https://blog.kicou.info/jitsi-meet-how-to-display-names</link>
      <description>&lt;![CDATA[#JitsiMeet #Videoconferencing&#xA;&#xA;2022-03 update: This post is now obsolete. Current versions of Jitsi Meet now display participants&#39; names as expected. I am leaving this post up because it may provide hints as to how to customise the display of your Jitsi instance.&#xA;&#xA;When using the tile view in a Jitsi Meet video-conference, I find it annoying that you cannot see people&#39;s names unless you hover over the person&#39;s tile with the mouse cursor.&#xA;&#xA;I mean, it is OK for a 5-person conference where you know everybody, but when communicating with 20 people at once it is nice to be able to tell who is who at a glance. Hovering over thumbnails is not very practical.&#xA;&#xA;I don&#39;t understand why Jitsi Meet does not make names visible at all times. It would be nice if it was at least a server setting. Alas it is not.&#xA;&#xA;But all hope is not lost: there is an easy way to enable permanent name display without having to rebuild Jitsi Meet. All it takes is a couple of CSS file edits on the server:&#xA;&#xA;!--more--&#xA;&#xA;1. Edit the file /usr/share/jitsi-meet/body.html and add the line:&#xA;&#xA;link rel=&#34;stylesheet&#34; href=&#34;css/custom.css?v=1&#34;&#xA;The file body.html is empty on a stock Jitsi Meet installation. If it already has content, just add the line somewhere at the beginning or at the end.&#xA;&#xA;Paths are based on a Debian/Ubuntu installation. Other distros may have a different directory structure.&#xA;&#xA;2. Create the file /usr/share/jitsi/meet/css/custom.css and populate it with the following code:&#xA;&#xA;alwaysOnTop .displayname,&#xA;.videocontainer .displayname,&#xA;.videocontainer .editdisplayname {&#xA;        position: absolute;&#xA;        bottom: 2%;&#xA;        top: auto;&#xA;        left: 5px;&#xA;        width: auto;&#xA;&#xA;        background-color: rgba(24, 24, 24, .66);&#xA;        color: #fff;&#xA;        text-shadow: 1px 1px #111111;&#xA;&#xA;        padding: 4px 8px 4px 8px;&#xA;        border-radius: 5px;&#xA;&#xA;        text-align: left;&#xA;        text-overflow: ellipsis;&#xA;        font-size: larger;&#xA;        font-weight: normal;&#xA;}&#xA;&#xA;.vertical-filmstrip .displayname,&#xA;.vertical-filmstrip .editdisplayname {&#xA;        bottom: 2%;&#xA;        left: 2px;&#xA;        width: calc(100% - 8px);&#xA;&#xA;        padding: 0px 3px 0px 3px;&#xA;        border-radius: 0px;&#xA;&#xA;        font-size: small;&#xA;        font-weight: normal;&#xA;}&#xA;&#xA;.display-video .displayNameContainer {&#xA;        / visibility: hidden /&#xA;        visibility: visible;;&#xA;}&#xA;&#xA;.display-name-on-video .avatar-container {&#xA;        / visibility: hidden /&#xA;        visibility: visible;&#xA;}&#xA;&#xA;.display-avatar-only .displayNameContainer {&#xA;        / visibility: hidden /&#xA;        visibility: visible;&#xA;}&#xA;&#xA;Once the files are saved, you are done: nothing to rebuild, nothing to compile, nothing to restart. Just refresh the page in your browser and the CSS change should take effect immediately.&#xA;&#xA;This trick will only work with web clients, but I guess mobile app users wouldn&#39;t benefit much from it anyway, given the reduced display area and the already crippled mobile tile view.&#xA;&#xA;---&#xA;References:&#xA;&#xA;https://community.jitsi.org/t/how-to-configure-that-the-participants-name-is-always-visible-during-the-conference/4996&#xA;https://community.jitsi.org/t/customizing-interface-to-always-show-names-almost-done-need-help/85676&#xA;&#xA;— Kicou]]&gt;</description>
      <content:encoded><![CDATA[<p><a href="https://blog.kicou.info/tag:JitsiMeet" class="hashtag"><span>#</span><span class="p-category">JitsiMeet</span></a> <a href="https://blog.kicou.info/tag:Videoconferencing" class="hashtag"><span>#</span><span class="p-category">Videoconferencing</span></a></p>

<p><em>2022-03 update: This post is now obsolete. Current versions of Jitsi Meet now display participants&#39; names as expected. I am leaving this post up because it may provide hints as to how to customise the display of your Jitsi instance.</em></p>

<p>When using the tile view in a Jitsi Meet video-conference, I find it annoying that you cannot see people&#39;s names unless you hover over the person&#39;s tile with the mouse cursor.</p>

<p>I mean, it is OK for a 5-person conference where you know everybody, but when communicating with 20 people at once it is nice to be able to tell who is who at a glance. Hovering over thumbnails is not very practical.</p>

<p>I don&#39;t understand why Jitsi Meet does not make names visible at all times. It would be nice if it was at least a server setting. Alas it is not.</p>

<p>But all hope is not lost: there is an easy way to enable permanent name display without having to rebuild Jitsi Meet. All it takes is a couple of CSS file edits on the server:</p>



<h4 id="1-edit-the-file-usr-share-jitsi-meet-body-html-and-add-the-line">1. Edit the file <code>/usr/share/jitsi-meet/body.html</code> and add the line:</h4>

<pre><code class="language-html">&lt;link rel=&#34;stylesheet&#34; href=&#34;css/custom.css?v=1&#34;&gt;
</code></pre>

<p>The file <code>body.html</code> is empty on a stock Jitsi Meet installation. If it already has content, just add the line somewhere at the beginning or at the end.</p>

<p>Paths are based on a Debian/Ubuntu installation. Other distros may have a different directory structure.</p>

<h4 id="2-create-the-file-usr-share-jitsi-meet-css-custom-css-and-populate-it-with-the-following-code">2. Create the file <code>/usr/share/jitsi/meet/css/custom.css</code> and populate it with the following code:</h4>

<pre><code class="language-css">#alwaysOnTop .displayname,
.videocontainer .displayname,
.videocontainer .editdisplayname {
        position: absolute;
        bottom: 2%;
        top: auto;
        left: 5px;
        width: auto;

        background-color: rgba(24, 24, 24, .66);
        color: #fff;
        text-shadow: 1px 1px #111111;

        padding: 4px 8px 4px 8px;
        border-radius: 5px;

        text-align: left;
        text-overflow: ellipsis;
        font-size: larger;
        font-weight: normal;
}

.vertical-filmstrip .displayname,
.vertical-filmstrip .editdisplayname {
        bottom: 2%;
        left: 2px;
        width: calc(100% - 8px);

        padding: 0px 3px 0px 3px;
        border-radius: 0px;

        font-size: small;
        font-weight: normal;
}

.display-video .displayNameContainer {
        /* visibility: hidden */
        visibility: visible;;
}

.display-name-on-video .avatar-container {
        /* visibility: hidden */
        visibility: visible;
}

.display-avatar-only .displayNameContainer {
        /* visibility: hidden */
        visibility: visible;
}
</code></pre>

<p>Once the files are saved, you are done: nothing to rebuild, nothing to compile, nothing to restart. Just refresh the page in your browser and the CSS change should take effect immediately.</p>

<p>This trick will only work with web clients, but I guess mobile app users wouldn&#39;t benefit much from it anyway, given the reduced display area and the already crippled mobile tile view.</p>

<hr>

<p>References:</p>
<ul><li><a href="https://community.jitsi.org/t/how-to-configure-that-the-participants-name-is-always-visible-during-the-conference/49962">https://community.jitsi.org/t/how-to-configure-that-the-participants-name-is-always-visible-during-the-conference/4996</a></li>
<li><a href="https://community.jitsi.org/t/customizing-interface-to-always-show-names-almost-done-need-help/85676">https://community.jitsi.org/t/customizing-interface-to-always-show-names-almost-done-need-help/85676</a></li></ul>

<p>— Kicou</p>
]]></content:encoded>
      <guid>https://blog.kicou.info/jitsi-meet-how-to-display-names</guid>
      <pubDate>Thu, 31 Dec 2020 02:49:38 +0000</pubDate>
    </item>
  </channel>
</rss>