Navigation
Manage header and footer navigation, including theme-specific item limits and footer column structure.
Step-by-Step- Go to the 'Navigation' settings in the Ghost Admin.
- Add, remove, and reorder navigation items as needed. Use the trash icon to remove an item, type into an empty row to add a new one, and drag items from the left icon to change their order. In Secondary navigation, footer columns are created automatically after several items.
- After adding your items, click 'OK' to update the navigation on your site.
- You’ll need to open the theme’s
../partials/navigation.hbsfile in your code editor. - At the top, open the 'Header navigation' section.
- Replace the current
to="3"andfrom="4"values, for example withto="4"andfrom="5". - Save your
navigation.hbsfile in../partials/folder.
- You’ll need to open the theme’s
../partials/navigation.hbsfile in your code editor. - In the middle of the page, open the 'Footer navigation' section.
- The columns have a
limitandfromparameter, that needs to be changed. For example, to change the number of items to 5 for each column:
{{#foreach navigation limit="5"}}
...
{{#foreach navigation limit="5" from="6"}}
...
{{#foreach navigation limit="5" from="11"}}
...
{{#foreach navigation from="16"}}
...
Another example: change the limit to 6 only for the second column:
{{#foreach navigation limit="4"}}
...
{{#foreach navigation limit="6" from="5"}}
...
{{#foreach navigation limit="4" from="11"}}
...
{{#foreach navigation from="15"}}
...
- Save your
navigation.hbsfile in../partials/folder.
Type at least 2 characters to search