diff --git a/docs/general-concepts/icons.md b/docs/general-concepts/icons.md
index 989609b6..439eecb5 100644
--- a/docs/general-concepts/icons.md
+++ b/docs/general-concepts/icons.md
@@ -2,41 +2,89 @@
title: Icons
---
-Icons
+Standard Joomla! Icons
=====
-Joomla uses free [FontAwesome](https://fontawesome.com/search) icons,
+## Overview
+Joomla uses the free [FontAwesome](https://fontawesome.com/search) icons,
which are implemented as [CSS pseudo-elements](https://docs.fontawesome.com/web/add-icons/pseudo-elements)
-The list of available icons can be found in media/templates/administrator/atum/css/vendor/fontawesome-free.css
+Joomla implemented the free standard icons, brand icons and supports a subset "icon-..." to be compatible with J!3x and following versions
-The subset of FontAwesome icons used internally within Joomla is designated with the prefix "icon-" (e.g., "icon-calendar", "icon-file", etc.)
-This is a remnant of the old coding style of FontAwesome; its latest versions use the "fa-" prefix, but Joomla is keeping the old prefix for backward compatibility.
+The source list of available icons can be found in joomla file `media/templates/administrator/atum/css/vendor/fontawesome-free.css`. A visible representation of all icons with additional information see our [guide.joomla.org](https://guide.joomla.org/user-manual/templates/standard-icons)
-To display such an icon, you can use:
+## Fontawesome icons
+Fontawesome icons can be used for HTML in following forms:
-```php
-
+```html
+
+
```
-The attribute aria-hidden="true" hides the icon from screen readers and improves accessibility.
+The actual icon name fa-!name! class is accompanied by a prefix class like "fa ..". More below or see [FontAwesome 'classic' styles](https://docs.fontawesome.com/web/dig-deeper/styles)
+The \ element can also do the job but the preferred way is to use classes inside the \ element.
-In case you want to display other icons not included in the Joomla pack, you have several options, one of which is to use additional FontAwesome icons.
-This can be achieved in different ways depending on your needs:
-1. Using FontAwesome Kit - this is the easiest approach, but you should have an account on their site.
-2. Using self-hosted webfonts and additional CSS files from FontAwesome.
-3. Using self-hosted SVG and JS files - for a few icons, this way you will have some speed optimization.
+Add attribute ```aria-hidden="true"``` for hiding the icon from screen readers and improves accessibility. Use attribute ```style="font-size: 2rem;"``` or ```style="font-size: 48px;"``` for the size of the icon font.
+
+### Standard icons
+
+The Prefix part is ```fa``` which is short for ```fas``` which is short for ```fa-solid``` which can be used instead.
+
+The icon name part begins with ```fa-``` and the name. Example:
+```html
+
+
+```
+
+### Brand icons
+
+The prefix part is ```fab``` which is short for ```fa-brands``` which can be used instead
+
+Example:
+```html
+
+
+```
-According to [How To Add Icons](https://docs.fontawesome.com/web/add-icons/how-to), the CSS classes are prefixed "fa-" as "fa-solid" or "fa-brands".
-The preferred way is to use classes inside the `` element:
+## Icomoon replacement form / 'icon' parameter in code function calls
+For this set of icons icon names from J3! (icomoon) were replaced (partly) by fontawesome icons. The icon itself is one of the fontawesome icons but the name may differ. Also this is a smaller subset with less icons. It is kept for compatibility with J!3 icomoon replacements. In joomla code there are functions which accept the icon name as parameter.
+
+### Direct Html use
+
+The class gets prefix "icon-" (e.g., "icon-calendar", "icon-file", etc.)
+
+Form: ``````. The name has to be exchanged for icon name.
+Add attribute aria-hidden="true" for hiding the icon from screen readers and improves accessibility.
+
+Example:
```html
-
+
+
```
-But the span element can also do the job:
+### Parameter in J! functions
+
+For example in HtmlView.php of a component the ToolBarHelper:: functions accept a icon name from this icon set.
+
+Example:
+```html
+ToolBarHelper::title(Text::_('COM_EXAMPLE_TITLE'), 'envelope');
+```
-```php
-
-
+:::tip
+Instead of using an 'icon' name of the icon class (see above) a fontawesome icon may be used instead in following form. It is helpful when the required symbol is not available — or looks better.
+```html
+ToolBarHelper::title(Text::_('COM_EXAMPLE_TITLE'), 'none fa fa-camera-retro');
```
+With 'none' given internally a 'icon-none' will be written into the HTML class and ' fa fa-camera-retro' will follow.
+Attention: This could affect subsequent button icons whose CSS formatting is then redefined.
+:::
+
+## Using other icon sets
+
+In case you want to display other icons not included in the Joomla pack, you have several options, one of which is to use additional FontAwesome icons.
+This can be achieved in different ways depending on your needs:
+1. Using FontAwesome Kit - this is the easiest approach, but you should have an account on their site.
+2. Using self-hosted webfonts and additional CSS files from FontAwesome.
+3. Using self-hosted SVG and JS files - for a few icons, this way you will have some speed optimization.