Extending the Material theme #8388
-
Hello! I am working on getting a custom header going on my documentation. The first thing I tried was getting a custom CSS file applied. My Any assistance is appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hello @kattni, mkdocs-material/material/templates/base.html Lines 46 to 53 in 08fd869 As a side note don't forget to use the Reference:
|
Beta Was this translation helpful? Give feedback.
Hello @kattni,
the
styles
block contains all of the styles, so you have to remember to add a{{ super() }}
call to load the initial value and then add your own. Or useextrahead
, which is empty by default, so it only contains the new values.mkdocs-material/material/templates/base.html
Lines 46 to 53 in 08fd869
As …