From 11ef73bc2dd44eb92ca72a3112c2545591d99f72 Mon Sep 17 00:00:00 2001 From: Philip Durbin Date: Thu, 28 Sep 2023 12:05:40 -0400 Subject: [PATCH] show 6 items in header https://pydata-sphinx-theme.readthedocs.io/en/stable/user_guide/header-links.html#navigation-bar-dropdown-links --- source/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/conf.py b/source/conf.py index 160439c..6e4f711 100644 --- a/source/conf.py +++ b/source/conf.py @@ -25,5 +25,6 @@ html_logo = '_static/_images/gdcc-logo.png' html_static_path = ['_static'] html_theme_options = { - "show_prev_next": False + "show_prev_next": False, + "header_links_before_dropdown": 6, }