--- title: Top navigation audience: writer, designer tags: [navigation] keywords: last_updated: summary: "The top navigation provides either single links or a drop-down menu. There are some other features, such as a feedback email, custom menu, and popout link." --- {% include linkrefs.html %} ## Changing the top navigation The top navigation reads from the \_data/topnav_doc.yml file. There are two sections: * topnav * topnav_dropdowns Items in the `topnav` section are rendered as single links. In contrast, items in the `topnav_dropdowns` section are rendered as a drop-down menu. ## The Feedback email If you click the Feedback link, it inserts the link to the current page along with a subject header and body. The topnav.html file contains an include to feedback.html. This file contains the JavaScript that gets the current page URL and inserts it into the message body. You configure the email in the configuration file with this property: `site.feedback_email`. ## Custom Menu It's common to publish multiple sites. If you want to link them together, you could simply list links to the other doc sites in a drop-down menu configured in the topnav_dropdowns section in the topnav_doc.yml file. However, suppose you want to do something more fancy. Included in the topnav.html file is an include to /doc/customMenu.html. The code there is as follows: ```