You are not logged in.
Pages: 1
Hello Guys, can you please tell me which files exactly I have to modify to be able to change the GLPI logo on the Login page in version 10.0.9 on the Ubuntu server?
Offline
Hi rikardoperu,
in order to change that you need to go to Administration > Entity > UI customization
Enter the following values:
For the login Page:
body.welcome-anonymous .card-body { background-color:#cfdcea}
body.welcome-anonymous .glpi-logo {
--logo: url("/LOCATION OF YOUR LOGO");
content: var(--logo);
height: 190px;
width: 829px;
}
For the upper left corner:
.page .glpi-logo {
background: url("/LOCATION OF YOUR LOGO") no-repeat;
background-size: 100px 50px;
}
Regards
Server: GLPI 10.0.15 FreeBSD 13 NGINX
Plugins: Additional fields 1.21.8, News 1.12.2, Data injection 2.13.5, Form Creator 2.13.9, Glpisaml 1.1.6
Offline
hello need help to modify my logo glpi login page my logo is ok for fd_logo.png but on the other hand for the login logo impossible to display it I put my css I don't know what is wrong thank you for your help
important:
I copied my logos into the /var/www/html/glpi/pics directory
body.welcome-anonymous .card-body { background-color:#cfdcea}
body.welcome-anonymous .glpi-logo {
--logo:url(../pics/login_logo_glpi.png);
content: var(--logo);
height: 190px;
width: 829px;
}
.page .glpi-logo {
background: url("../pics/fd_logo.png") no-repeat;
background-size: 100px 50px;
}
Offline
Pages: 1