diff --git a/Doc/Sd1/GettingStarted/Fig/jetbrainsToolbox.png b/Doc/Sd1/GettingStarted/Fig/jetbrainsToolbox.png
new file mode 100644
index 0000000000000000000000000000000000000000..ada9745e5df860291f64a3060e6353f27d25f99b
Binary files /dev/null and b/Doc/Sd1/GettingStarted/Fig/jetbrainsToolbox.png differ
diff --git a/Doc/Sd1/GettingStarted/gettingStarted.xml b/Doc/Sd1/GettingStarted/gettingStarted.xml
index c95a576bc4cafe9e0e94ab05a41e37a0face1598..edcb1bf874f53ace861e30d0e9cb6fa14eefb660 100644
--- a/Doc/Sd1/GettingStarted/gettingStarted.xml
+++ b/Doc/Sd1/GettingStarted/gettingStarted.xml
@@ -2377,33 +2377,33 @@ loop # 12</screen>
     <figure xml:id="sd1_fig_ideaDownload">
       <title><xref linkend="glo_Soft_IntellijIDEA"/> installation</title>
 
-      <itemizedlist>
-        <listitem>
-          <para><link
-          xlink:href="https://www.jetbrains.com/help/idea/installation-guide.html">Install
-          IntelliJ IDEA</link> instructions.</para>
-        </listitem>
+      <informaltable border="0">
+        <colgroup width="32%"/>
 
-        <listitem>
-          <para>Choose <quote>Ultimate</quote>.</para>
-        </listitem>
+        <colgroup width="68%"/>
 
-        <listitem>
-          <para>Linux users:</para>
+        <tr>
+          <td valign="top"><itemizedlist>
+              <listitem>
+                <para><link
+                xlink:href="https://www.jetbrains.com/help/idea/installation-guide.html#toolbox">IntelliJ
+                IDEA</link> Toolbox based installation</para>
+              </listitem>
 
-          <itemizedlist>
-            <listitem>
-              <para><link
-              xlink:href="https://blog.jetbrains.com/idea/2017/11/install-intellij-idea-with-snaps">Snap</link></para>
-            </listitem>
+              <listitem>
+                <para>Choose <quote>Ultimate</quote>.</para>
+              </listitem>
+            </itemizedlist></td>
 
-            <listitem>
-              <para><link
-              xlink:href="https://flathub.org/apps/details/com.jetbrains.IntelliJ-IDEA-Ultimate">Flatpak</link></para>
-            </listitem>
-          </itemizedlist>
-        </listitem>
-      </itemizedlist>
+          <td valign="top"><informalfigure>
+              <mediaobject>
+                <imageobject>
+                  <imagedata fileref="Fig/jetbrainsToolbox.png" width="50%"/>
+                </imageobject>
+              </mediaobject>
+            </informalfigure></td>
+        </tr>
+      </informaltable>
     </figure>
 
     <figure xml:id="sd1_fig_ideaUltimateLicenseTypes">
diff --git a/ws/Docbook/CustomLayer/slide/xsl/slideHdm.xsl b/ws/Docbook/CustomLayer/slide/xsl/slideHdm.xsl
index c402a5f441c4f4645687ad57351c14617494a4c8..3f071f1f5ad92c166e8b5a53fd006bc48bf9df11 100644
--- a/ws/Docbook/CustomLayer/slide/xsl/slideHdm.xsl
+++ b/ws/Docbook/CustomLayer/slide/xsl/slideHdm.xsl
@@ -401,7 +401,16 @@
                             </xsl:choose>
 
                             <div class="mediaobject">
-                                <img width="95%"
+                                <xsl:variable name="imgWidth">
+                                    <xsl:choose>
+                                        <xsl:when test="@width">
+                                            <xsl:value-of select="@width"/>
+                                        </xsl:when>
+                                        <xsl:otherwise>95%</xsl:otherwise>
+                                    </xsl:choose>
+                                </xsl:variable>
+
+                                <img width="{$imgWidth}"
                                      src="{concat($fullStemPathname, '-', position() - 1, '.svg')}"
                                      alt="Image layer {position()}"/>
                             </div>
@@ -437,8 +446,16 @@
                 <xsl:text>/</xsl:text>
             </xsl:for-each>
         </xsl:variable>
+        <xsl:variable name="imgWidth">
+            <xsl:choose>
+                <xsl:when test="@width">
+                    <xsl:value-of select="@width"/>
+                </xsl:when>
+                <xsl:otherwise>95%</xsl:otherwise>
+            </xsl:choose>
+        </xsl:variable>
 
-        <img width="95%" src="{concat($baseSupplementDir, @fileref)}" alt="{ancestor::d:figure/d:title}"
+        <img width="{$imgWidth}" src="{concat($baseSupplementDir, @fileref)}" alt="{ancestor::d:figure/d:title}"
         />
     </xsl:template>