-
I leave only icon and site name on the header, so the whole header looks emtpy. It would be nice to put navigation tabs inside of the header instead of below the header. Just like mkdocs built-in theme does How to do that? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You could use |
Beta Was this translation helpful? Give feedback.
You could use
navigation.tabs.sticky
to turn off the tabs block onbase.html
, then edit theheader.html
partial to include the tabs in a different place. They are currently placed after the header, not within. You may also need to play with CSS to make sure the tabs render properly as part of the header. Be aware of the drawback that editing partials means that subsequent changes to them in Material might not play with your customization.