diff --git a/README.md b/README.md
index 425146c..cc51945 100644
--- a/README.md
+++ b/README.md
@@ -39,8 +39,8 @@ sorting-spec: |
---
```
-Click the ribbon button () to tell the plugin to read the sorting specification and apply it.
-The ribbon icon should turn () and the sorting should be applied to the folder
+Click the ribbon button ( or  on phone) to tell the plugin to read the sorting specification and apply it.
+The sorting should be applied to the folder. On desktops and tablets the ribbon icon should turn ()
!!! **Done!** !!!
@@ -115,16 +115,30 @@ Refer to the [TL;DR section of advanced README.md](./advanced-README.md#tldr-usa
Click the ribbon icon to toggle the plugin between enabled and suspended states.
-States of the ribbon icon:
+States of the ribbon icon on large-screen devices (desktops, laptops and tablets like iPad):
-  Plugin suspended. Custom sorting NOT applied.
-  Plugin active, custom sorting applied.
-  Syntax error in custom sorting configuration.
-  Plugin suspended. General error.
--  Plugin enabled but the custom sorting was not applied.
+-  Plugin enabled, but the custom sorting was not applied.
+-  (Only on large-screen mobile devices like iPad).
+ Plugin enabled. but the custom sorting was not applied.
+
+On small-screen mobile devices (phones) the icon is static:
+
+-  The icon acts as a button to toggle between enabled and disabled. Its appearance doesn't change
For more details on the icon states refer to [Ribbon icon section of the advanced-README.md](./advanced-README.md#ribbon-icon)
+## Small screen mobile devices remarks
+
+- enable mobile-specific notifications
+- use the 'sort on' Obsidian command palette being easily available
+ (swipe down gesture on small-screen mobiles) allows for quick steering of the plugin via commands: sort-on and sort-off
+
+could need to activate separately, even if on shared vault and active on desktop
+
## Installing the plugin
### From the official Obsidian Community Plugins page
diff --git a/advanced-README.md b/advanced-README.md
index 5131b8d..3e6d472 100644
--- a/advanced-README.md
+++ b/advanced-README.md
@@ -72,11 +72,11 @@ can be the root folder. Ensure the exact file name is `sortspec.md`. That file c
> > 
> 2. Enable the plugin in obsidian.
>
-> 3. Click the ribbon button () to tell the plugin to read the sorting
+> 3. Click the ribbon button ( or  on phone) to tell the plugin to read the sorting
specification from `sortspec` note (the `sortspec.md` file which you downloaded a second ago).
-> - The observable effect should be the change of appearance of the ribbon button to
-() and reordering
-of items in root vault folder to reverse alphabetical with folders and files treated equally.
+> - The observable effect should be reordering of items in root vault folder to reverse alphabetical with folders and files treated equally.
+And on computers and tablets be the change of appearance of the ribbon button to
+ (on desktop and tablet only) and
> - The notification balloon should confirm success: 
> 4. Click the ribbon button again to suspend the plugin. The ribbon button should toggle its appearance again
and the order of files and folders in the root folder of your vault should get back to the order selected in
@@ -570,7 +570,7 @@ reference.
Click the ribbon icon to toggle the plugin between enabled and suspended states.
-States of the ribbon icon:
+States of the ribbon icon on large-screen devices (desktops, laptops and tablets like iPad):
-  Plugin suspended. Custom sorting NOT applied.
- Click to enable and apply custom sorting.
@@ -591,6 +591,14 @@ States of the ribbon icon:
-  Plugin enabled but the custom sorting was not applied.
- This can happen when reinstalling the plugin and in similar cases
- Click the ribbon icon twice to re-enable the custom sorting.
+-  Only on large-screen mobile devices like iPad.
+ - Plugin enabled. but the custom sorting was not applied.
+
+On small-screen mobile devices (phones) the icon is static:
+
+-  The icon acts as a button to toggle between enabled and disabled. Its appearance doesn't change
+ - Click to enable and apply custom sorting or to disable custom sorting
+ - To get notified about custom sort plugin state, enable the mobile-specific notifications in plugin settings
## Installing the plugin
diff --git a/docs/icons/icon-mobile-initial.png b/docs/icons/icon-mobile-initial.png
new file mode 100644
index 0000000..6dde367
Binary files /dev/null and b/docs/icons/icon-mobile-initial.png differ
diff --git a/src/custom-sort/icons.ts b/src/custom-sort/icons.ts
index 1e0a7c0..5991501 100644
--- a/src/custom-sort/icons.ts
+++ b/src/custom-sort/icons.ts
@@ -1,6 +1,7 @@
import {addIcon} from "obsidian";
export const ICON_SORT_ENABLED_ACTIVE: string = 'custom-sort-icon-active'
+export const ICON_SORT_MOBILE_INITIAL: string = 'custom-sort-icon-mobile-initial'
export const ICON_SORT_SUSPENDED: string = 'custom-sort-icon-suspended'
export const ICON_SORT_ENABLED_NOT_APPLIED: string = 'custom-sort-icon-enabled-not-applied'
export const ICON_SORT_SUSPENDED_SYNTAX_ERROR: string = 'custom-sort-icon-syntax-error'
@@ -13,6 +14,12 @@ export function addIcons() {