diff --git a/docs/userGuide/syntax/navBars.mbdf b/docs/userGuide/syntax/navBars.mbdf
index 5707b0c9fb..7ff40fa4f6 100644
--- a/docs/userGuide/syntax/navBars.mbdf
+++ b/docs/userGuide/syntax/navBars.mbdf
@@ -158,3 +158,26 @@ Name | Description
+
+****Page and site navigation menus****
+Both [site navigation]({{ baseUrl }}/userGuide/usingComponents.html#site-navigation-menus) and [page navigation]({{ baseUrl }}/userGuide/usingComponents.html#page-navigation-menus) menus will be hidden on smaller screens.
+To make these accessible on smaller screens, you can use the `` and `` components in the `lower-navbar` slot. By default, if the `lower-navbar` slot is not specified, both the site and
+page navigation buttons will automatically be added if they exist.
+
+```html{.no-line-numbers}
+
+
+ MarkBind
+
+
+```
+
+Component | Description
+--- | ---
+`page-nav-button` | Pulls any element with an identifier, `id=page-nav` into the menu. If no such element exists, it pulls any [page navigation menu]({{ baseUrl }}/userGuide/usingComponents.html#page-navigation-menus) used in the layout.
+`site-nav-button` | Pulls any element with an identifier, `id=site-nav` into the menu. If no such element exists, it pulls the first [site navigation menu]({{ baseUrl }}/userGuide/usingComponents.html#site-navigation-menus) used in the layout.
\ No newline at end of file
diff --git a/docs/userGuide/syntax/pageNavigationMenus.mbdf b/docs/userGuide/syntax/pageNavigationMenus.mbdf
index a650164193..935460605f 100644
--- a/docs/userGuide/syntax/pageNavigationMenus.mbdf
+++ b/docs/userGuide/syntax/pageNavigationMenus.mbdf
@@ -17,6 +17,8 @@
3. **Position the page navigation menu** within your layout using the `{% raw %}{{ pageNav }}{% endraw %}` variable.
+4. **(Optional) To make pageNav accessible on smaller screens, you can use the `` component in the [navbar]({{baseUrl}}/userGuide/usingComponents.html#navbars).**
+
{{ icon_example }}
diff --git a/docs/userGuide/syntax/siteNavigationMenus.mbdf b/docs/userGuide/syntax/siteNavigationMenus.mbdf
index c5c501cf3e..9bb93ddb3c 100644
--- a/docs/userGuide/syntax/siteNavigationMenus.mbdf
+++ b/docs/userGuide/syntax/siteNavigationMenus.mbdf
@@ -7,6 +7,7 @@
Steps to add a siteNav:
1. Format your siteNav as an unordered Markdown list
2. Include it under a `` element.
+3. (Optional) To make siteNav accessible on smaller screens, you can use the `` component in the [navbar]({{baseUrl}}/userGuide/usingComponents.html#navbars).