Start with Camunda 7 tomcat / change login window logo

Hi William,

Thank you very much for the answer, but I tried to add it and there is no difference for me. Still the logo remains. But you helped me understand the point. I don’t know why, but I have different div classes than yours. Well, thanks to you, I found a way to solve it.

This fix works for me:

.login-header svg{
	display: none;	
}

.form-signin .login-header {
	background-image: url(../assets/images/logo.png);
    background-repeat: no-repeat;
	background-size:  300px 60px;
	background-position: center top;
	width:100%;
	height:100px;
}
.app-name{
	position: relative;
    text-align: center;
	top:90%;	
}

image

1 Like