Not sure if you into CSS or now how it works, but I just looked at he source code and made a list of things I wanted to change and made a theme that overrides those values. Example I used on my test server I wanted to make header bar yellow so I know I am on the test server.
.navbar-default {
background-color: #c1a803;
}
You can also put your own label where “Mayan EDMS” is via the config file. Just be sure to restart the services.
# In config.yml
...
COMMON_PROJECT_TITLE: Test Server
...
Thank you so much for helping out. Just had one follow up query. i have setup the project using docker compose method. Where can i find / should add config.yml file ?
i changed the project title and added some css like this
.navbar-default {
background-color: #c1a803 important;
color: #000000;
}
and i restated my server also still the theme is not changing. anyone know any idea?