# Customize navigation placement of app plugin pages
By default, Grafana app plugins and their pages appear under the "More apps" section in the navigation menu. However, as a Grafana administrator, you might want to improve user experience by relocating specific pages or entire app plugins to more relevant sections of the navigation hierarchy. This guide shows you how to customize the placement of app plugin pages across different parts of your Grafana navigation menu.
## Customize app and page navigation placement
You can change the location of your app plugin pages in two ways:
1. Move the entire app plugin (with all its pages) to a different section
2. Move specific pages from your app plugin to different sections
### 1. Move an entire app plugin to a different section
To relocate an entire app plugin to a different navigation section, use the `navigation.app_sections` configuration in your Grafana configuration file:
```ini
[navigation.app_sections]
org-example-app = explore 100
```
This configuration:
- Moves the app plugin with ID `org-example-app`
- Places it in the `explore` section
- Assigns it a sort weight of `100` (determining its position within that section)
### 2. Move individual app pages to different sections
To move specific pages from an app plugin to different navigation sections, use the `navigation.app_standalone_pages` configuration: