diff --git a/fern/products/docs/pages/customization/frontmatter.mdx b/fern/products/docs/pages/customization/frontmatter.mdx
index e8a6599f0..2bf85cd28 100644
--- a/fern/products/docs/pages/customization/frontmatter.mdx
+++ b/fern/products/docs/pages/customization/frontmatter.mdx
@@ -176,6 +176,8 @@ max-toc-depth: 3
## Navigation links
Controls the conditional rendering of the navigation links (previous, next) at the bottom of the page. Set to true to disable this feature.
+
+ This can be set globally in the [global configuration](/learn/docs/configuration/what-is-docs-yml#layout-configuration).
@@ -194,6 +196,8 @@ hide-nav-links: true
## On-page feedback
Controls the conditional rendering of the on-page feedback form at the bottom of the page. Set to true to disable this feature.
+
+ This can be set globally in the [global configuration](/learn/docs/configuration/what-is-docs-yml#layout-configuration).
diff --git a/fern/products/docs/pages/customization/global-configuration.mdx b/fern/products/docs/pages/customization/global-configuration.mdx
index d18a36337..1b73828e3 100644
--- a/fern/products/docs/pages/customization/global-configuration.mdx
+++ b/fern/products/docs/pages/customization/global-configuration.mdx
@@ -402,6 +402,8 @@ layout:
searchbar-placement: header
tabs-placement: header
content-alignment: left
+ hide-nav-links: true
+ hide-feedback: true
```
@@ -446,6 +448,14 @@ layout:
and a 1px border will separate the sidebar from the content.
+
+ If set to true, the navigation links (previous, next) at the bottom of the page will not be rendered. This can be overridden on a per-page basis using the [frontmatter](/learn/docs/configuration/page-level-settings#navigation-links).
+
+
+
+ If set to true, the feedback form will not be rendered. This can be overridden on a per-page basis using the [frontmatter](/learn/docs/configuration/page-level-settings#on-page-feedback).
+
+
## GitHub configuration