Thanks, that pointed me in the right direction. I added/changed this in
variables.less
@wiki-header-bg:rgba(0, 134, 47, 0.9);
@wiki-nav-bg:rgba(126, 184, 67, 0.9);
and in Template.Nav.less the following, because I needed the navigation box
to have a specific color, instead of being derive
Hi,
if you don't feel comfortable mangling with the less files, as another
approach, you can define a template (a folder inside
./jspwiki-war/src/main/webapp/templates) with only a localheader.jsp
(see [#1]) file and set there your CSS. If a file is missing from a
template, JSPWiki will read if fr
Hi Ulf,
Thank you for reaching out. The elegant way to change the colors of the
header and footer in JSPWiki is to modify the variables.less file and then
recompile the LESS into CSS. This ensures that your changes are integrated
into the base template and are consistent across the site.
However,