https://bugs.documentfoundation.org/show_bug.cgi?id=163746
Buovjaga <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever confirmed|0 |1 --- Comment #1 from Buovjaga <[email protected]> --- https://www.doxygen.nl/manual/customize.html#minor_tweaks_header_css To tweak things like fonts or colors, margins, or other look & feel aspects of the HTML output in detail, you can create a different cascading style sheet. You can also let Doxygen use a custom header and footer for each HTML page it generates, for instance to make the output conform to the style used on the rest of your web site. To do this first run Doxygen as follows: doxygen -w html header.html footer.html customdoxygen.css This will create 3 files: header.html is a HTML fragment which Doxygen normally uses to start a HTML page. Note that the fragment ends with a body tag and that is contains a couple of commands of the form $word. These will be replaced by Doxygen on the fly. footer.html is a HTML fragment which Doxygen normally uses to end a HTML page. Also here special commands can be used. This file contain the link to www.doxygen.org and the body and html end tags. customdoxygen.css is the default cascading style sheet used by Doxygen. It is recommended only to look into this file and overrule some settings you like by putting them in a separate stylesheets and referencing those extra files via HTML_EXTRA_STYLESHEET. You should edit these files and then reference them from the configuration file. HTML_HEADER = header.html HTML_FOOTER = footer.html HTML_EXTRA_STYLESHEET = my_customdoxygen.css -- You are receiving this mail because: You are the assignee for the bug.
